We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 069dd51 commit 413de83Copy full SHA for 413de83
.github/workflows/cd-workflow.yml
@@ -1,9 +1,8 @@
1
name: 07-2. CD Workflow
2
3
on:
4
- # push:
5
- # branches: [main]
6
- workflow_dispatch:
+ push:
+ branches: [main]
7
8
env:
9
AZURE_WEBAPP_NAME: your-app-name # set this to your application's name
@@ -51,7 +50,10 @@ jobs:
51
50
steps:
52
53
# Add here the download-artifact step
54
-
+ - name: Download artifact from build job
+ uses: actions/download-artifact@v4
55
+ with:
56
+ name: node-app
57
58
- name: Deploy to Prod
59
if: ${{ success() }}
0 commit comments