We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc1a5e8 commit 4d83169Copy full SHA for 4d83169
.github/workflows/release.yaml
@@ -3,6 +3,7 @@ on:
3
push:
4
branches:
5
- main
6
+ workflow_dispatch:
7
jobs:
8
version-change:
9
name: Check for version change
@@ -19,7 +20,7 @@ jobs:
19
20
run: |
21
if ! git diff --exit-code HEAD~1 HEAD .version; then
22
echo "Detected changes..."
- echo "version=$(cat .version)" >> $GITHUB_ENV
23
+ echo "version=\"$(cat .version)\"" >> $GITHUB_ENV
24
echo "version_changed=true" >> $GITHUB_OUTPUT
25
fi
26
# This effectively releases a new Swift Package Manager version
0 commit comments