We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0a8f4c commit 1272715Copy full SHA for 1272715
1 file changed
.github/workflows/deploy.yml
@@ -13,6 +13,7 @@ jobs:
13
name: '🐳 Build & Deploy'
14
15
steps:
16
+
17
- name: '🔍 Checkout Code'
18
uses: actions/checkout@v4
19
with:
@@ -23,7 +24,6 @@ jobs:
23
24
25
node-version: 20.x
26
-
27
- name: "🧩 Install dependencies (npm)"
28
run: npm install --legacy-peer-deps
29
@@ -34,7 +34,6 @@ jobs:
34
if: github.ref == 'refs/heads/main'
35
run: node scripts/bumpVersion.js
36
37
38
- name: '🔧 Configure Git for Automation'
39
40
run: |
@@ -50,6 +49,9 @@ jobs:
50
49
git commit -m "chore: Auto-increment version [skip ci]" || echo "No changes to commit"
51
git push
52
+ - name: "🧹 Version bump cleanup"
53
+ run: rm -rf node_modules
54
55
- name: '�🔒 Verify Secrets Exist'
56
57
if [ -z "${{ secrets.GOOGLE_SERVICES_JSON_BASE64 }}" ]; then
0 commit comments