We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99d4b32 commit 43567c4Copy full SHA for 43567c4
.github/workflows/deploy.yml
@@ -1,4 +1,7 @@
1
+
2
name: '🚀 Deploy NestJS API Docker App'
3
+permissions:
4
+ contents: write
5
6
on:
7
push:
@@ -40,6 +43,8 @@ jobs:
40
43
41
44
- name: '💾 Commit Version Update'
42
45
if: github.ref == 'refs/heads/main'
46
+ env:
47
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
48
run: |
49
git add version.json package.json
50
git commit -m "chore: Auto-increment version [skip ci]" || echo "No changes to commit"
0 commit comments