We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f80fb9 commit 079e440Copy full SHA for 079e440
1 file changed
.github/workflows/ci.yml
@@ -52,9 +52,8 @@ jobs:
52
53
- name: Upload build artifacts
54
uses: actions/upload-artifact@v4
55
- if: matrix.node-version == '20.x'
56
with:
57
- name: frontend-build
+ name: frontend-build-${{ matrix.node-version }}
58
path: frontend/.next/
59
retention-days: 1
60
@@ -256,7 +255,7 @@ jobs:
256
255
- name: Download frontend build
257
uses: actions/download-artifact@v4
258
259
+ name: frontend-build-20.x
260
261
262
- name: Deploy to staging
@@ -267,7 +266,7 @@ jobs:
267
266
268
- name: Notify deployment
269
uses: 8398a7/action-slack@v3
270
- if: always()
+ if: always() && secrets.SLACK_WEBHOOK_URL
271
272
status: ${{ job.status }}
273
text: 'Deployment completed'
0 commit comments