We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b6fa82 commit 6970b85Copy full SHA for 6970b85
1 file changed
.github/workflows/deploy.yml
@@ -0,0 +1,20 @@
1
+name: Deploy
2
+on:
3
+ workflow_dispatch:
4
+ push:
5
+ branches: [ main ]
6
+ paths:
7
+ - "app/**"
8
+ - "requirements.txt"
9
+ - ".github/workflows/deploy.yml"
10
+jobs:
11
+ deploy:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ - name: Deploy to Azure Web App
16
+ uses: azure/webapps-deploy@v2
17
+ with:
18
+ app-name: YOUR_WEBAPP_NAME
19
+ publish-profile: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }}
20
+ package: .
0 commit comments