We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a881b7 commit 0595340Copy full SHA for 0595340
.github/workflows/build-and-deploy-dev.yml
@@ -0,0 +1,21 @@
1
+# This workflow will build a docker image, push it to ghcr.io, and deploy it to an Azure WebApp.
2
+name: Build and Deploy -- DEV
3
+
4
+on:
5
+ workflow_dispatch:
6
+ push:
7
+ branches: [master]
8
9
+jobs:
10
+ build-and-deploy:
11
+ uses: clearlydefined/operations/.github/workflows/app-build-and-deploy.yml@v1.0.0
12
+ secrets:
13
+ AZURE_CREDENTIALS: ${{ secrets.AZURE_CREDENTIALS }}
14
+ AZURE_WEBAPP_PUBLISH_PROFILE: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE_DEV }}
15
+ DEPLOY_TOKEN: ${{ secrets.DEPLOY_TOKEN }}
16
+ PRODUCTION_DEPLOYERS: ${{ secrets.PRODUCTION_DEPLOYERS }}
17
+ with:
18
+ deploy-env: dev
19
+ application-type: ui
20
+ azure-app-base-name: clearlydefined
21
+ azure-app-name-postfix: -dev
0 commit comments