We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent adafedd commit 015c7d3Copy full SHA for 015c7d3
1 file changed
.github/workflows/ci.yml
@@ -33,22 +33,3 @@ jobs:
33
- name: Push task packs to public
34
if: github.ref == 'refs/heads/main'
35
run: make push-packs-public
36
-
37
- - name: Release with incremented version
38
- if: github.ref == 'refs/heads/main'
39
- run: |
40
- VERSION=$(cat version.txt 2>/dev/null || echo "1")
41
- echo $((VERSION + 1)) > version.txt
42
- tar -czf release-v${VERSION}.tar.gz release/
43
- git config --local user.email "action@github.com"
44
- git config --local user.name "GitHub Action"
45
- git add version.txt
46
- git commit -m "Bump version to $((VERSION + 1))"
47
- git push
48
49
- - name: Upload release artifact
50
51
- uses: actions/upload-artifact@v4
52
- with:
53
- name: release
54
- path: release-v*.tar.gz
0 commit comments