Skip to content

Commit 015c7d3

Browse files
committed
Drop release
1 parent adafedd commit 015c7d3

1 file changed

Lines changed: 0 additions & 19 deletions

File tree

.github/workflows/ci.yml

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -33,22 +33,3 @@ jobs:
3333
- name: Push task packs to public
3434
if: github.ref == 'refs/heads/main'
3535
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-
if: github.ref == 'refs/heads/main'
51-
uses: actions/upload-artifact@v4
52-
with:
53-
name: release
54-
path: release-v*.tar.gz

0 commit comments

Comments
 (0)