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 7a48822 commit 67774b4Copy full SHA for 67774b4
.github/workflows/blank.yml
@@ -73,6 +73,16 @@ jobs:
73
files: |
74
*.AppImage*
75
*.AppBundle*
76
+
77
+ - uses: actions/checkout@v4
78
+ - name: Update LATEST_VERSION
79
+ run: |
80
+ echo "${{ env.VERSION }}" > ./LATEST_VERSION
81
+ git config user.name "github-actions[bot]"
82
+ git config user.email "github-actions[bot]@users.noreply.github.com"
83
+ git add ./LATEST_VERSION
84
+ git commit -m 'bump `LATEST_VERSION` [skip ci]'
85
+ git push
86
87
soar-nest:
88
needs: [release] #Only runs if release succeeded
0 commit comments