File tree Expand file tree Collapse file tree 3 files changed +16
-5
lines changed Expand file tree Collapse file tree 3 files changed +16
-5
lines changed Original file line number Diff line number Diff line change 2121 - name : Checkout
2222 uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2323 with :
24- fetch-depth : 1
24+ fetch-depth : 0
25+ fetch-tags : true
2526 persist-credentials : false
2627
2728 - run : git fetch --tags
4546 - name : Checkout
4647 uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4748 with :
48- fetch-depth : 1
49+ fetch-depth : 0
50+ fetch-tags : true
4951 persist-credentials : false
5052
5153 - run : git fetch --tags
6971 - name : Checkout
7072 uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
7173 with :
72- fetch-depth : 1
74+ fetch-depth : 0
75+ fetch-tags : true
7376 persist-credentials : false
7477
7578 - run : git fetch --tags
Original file line number Diff line number Diff line change 1717 - name : Checkout
1818 uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1919 with :
20- fetch-depth : 1
20+ fetch-depth : 0
21+ fetch-tags : true
2122 persist-credentials : false
2223
2324 - run : git fetch --tags
Original file line number Diff line number Diff line change @@ -11,8 +11,15 @@ XCPROJECT := Coder\ Desktop/Coder\ Desktop.xcodeproj
1111SCHEME := Coder\ Desktop
1212SWIFT_VERSION := 6.0
1313
14- MARKETING_VERSION =$(shell git describe --tags --abbrev=0 | sed 's/^v//' | sed 's/-.* $//')
1514CURRENT_PROJECT_VERSION =$(shell git describe --tags)
15+ ifeq ($(strip $(CURRENT_PROJECT_VERSION ) ) ,)
16+ $(error CURRENT_PROJECT_VERSION cannot be empty)
17+ endif
18+
19+ MARKETING_VERSION =$(shell git describe --tags --abbrev=0 | sed 's/^v//' | sed 's/-.* $$//')
20+ ifeq ($(strip $(MARKETING_VERSION ) ) ,)
21+ $(error MARKETING_VERSION cannot be empty)
22+ endif
1623
1724# Define the keychain file name first
1825KEYCHAIN_FILE := app-signing.keychain-db
You can’t perform that action at this time.
0 commit comments