Skip to content

Commit 829a8bf

Browse files
authored
Merge pull request #1046 from lumaxis/build-deploy-workflow
2 parents 4a881b7 + 0595340 commit 829a8bf

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)