We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ddf21a7 commit 45a1d01Copy full SHA for 45a1d01
.github/workflows/release.yml
@@ -41,7 +41,7 @@ jobs:
41
run: make release
42
43
- name: Upload Release Assets
44
- run: gh release upload "$RELEASE_TAG" "$out"
+ run: gh release upload "$RELEASE_TAG" "$out"/*
45
env:
46
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
47
RELEASE_TAG: ${{ github.event.release.tag_name }}
Makefile
@@ -11,7 +11,7 @@ XCPROJECT := Coder\ Desktop/Coder\ Desktop.xcodeproj
11
SCHEME := Coder\ Desktop
12
SWIFT_VERSION := 6.0
13
14
-MARKETING_VERSION=$(shell git describe --tags --abbrev=0 | sed 's/^v//')
+MARKETING_VERSION=$(shell git describe --tags --abbrev=0 | sed 's/^v//' | sed 's/-.*$//')
15
CURRENT_PROJECT_VERSION=$(shell git describe --tags)
16
17
# Define the keychain file name first
0 commit comments