We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c73833b + ff4c0b3 commit 5d0817eCopy full SHA for 5d0817e
2 files changed
.github/workflows/deploy.yml
@@ -0,0 +1,22 @@
1
+name: Deploy to Azure Web App
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - production
7
8
+jobs:
9
+ build-and-deploy:
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - name: Checkout code
14
+ uses: actions/checkout@v3
15
16
+ - name: Upload Docker Compose to Azure Web App
17
+ uses: azure/webapps-deploy@v2
18
+ with:
19
+ app-name: 'querypal-app'
20
+ publish-profile: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }}
21
+ images: ''
22
+ configuration-file: 'docker-compose.yml'
.gitignore
@@ -31,3 +31,6 @@ __pycache__/
31
.env
32
.env.local
33
.env.docker
34
35
+# CD and deployment files
36
+publish-profile.yml
0 commit comments