We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentc194b96 commit02b3b7dCopy full SHA for 02b3b7d
.github/workflows/release.yml
@@ -76,11 +76,6 @@ jobs:
76
path:${{ github.workspace }}/outputs/out
77
retention-days:7
78
79
- -name:Get version string
80
-id:version_string
81
-run:|
82
- echo "versionstring=$(./scripts/version.sh)" >> "$GITHUB_OUTPUT"
83
-
84
# Upload to release in non-dry-run mode
85
-name:Upload Release Assets
86
if:${{ !inputs.dryrun }}
@@ -101,12 +96,11 @@ jobs:
101
96
swift run update-appcast \
102
97
-i ../../oldappcast.xml \
103
98
-s "$out"/Coder-Desktop.pkg.sig \
104
- -v "$VERSION_STRING" \
99
+ -v "$(../version.sh)" \
105
100
-o ../../appcast.xml
106
-d "$VERSION_DESCRIPTION"
107
popd
108
env:
109
-VERSION_STRING:${{ steps.version_string.outputs.versionstring }}
110
VERSION_DESCRIPTION:${{ github.event_name == 'release' && github.event.release.body || '' }}
111
112