Build and Deploy -- DEV #35
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will build a docker image, push it to ghcr.io, and deploy it to an Azure WebApp. | |
name: Build and Deploy -- DEV | |
on: | |
workflow_dispatch: | |
push: | |
branches: [master] | |
jobs: | |
upload-package-lock-json: | |
name: Upload package-lock.json from this repo | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Upload package-lock.json | |
uses: actions/upload-artifact@v4 | |
with: | |
name: package-lock.json | |
path: package-lock.json | |
make-react-secret-available: | |
name: Make REACT_APP_GA_TRACKINGID_DEV secret available in env | |
runs-on: ubuntu-latest | |
outputs: | |
trackingid: "${{ env.REACT_APP_GA_TRACKINGID }}" | |
steps: | |
- name: Make secret available | |
run: | | |
echo "REACT_APP_GA_TRACKINGID=$REACT_APP_GA_TRACKINGID_DEV" >> $GITHUB_ENV | |
build-and-deploy: | |
name: Build and Deploy | |
needs: [upload-package-lock-json, make-react-secret-available] | |
uses: clearlydefined/operations/.github/workflows/[email protected] | |
secrets: | |
AZURE_CREDENTIALS: ${{ secrets.AZURE_CREDENTIALS }} | |
AZURE_WEBAPP_PUBLISH_PROFILE: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE_DEV }} | |
DEPLOY_TOKEN: ${{ secrets.DEPLOY_TOKEN }} | |
PRODUCTION_DEPLOYERS: ${{ secrets.PRODUCTION_DEPLOYERS }} | |
with: | |
deploy-env: dev | |
application-type: ui | |
azure-app-base-name: clearlydefined | |
azure-app-name-postfix: -dev | |
docker-build-args: | | |
REACT_APP_SERVER=https://dev-api.clearlydefined.io | |
REACT_APP_GA_TRACKINGID=${{ needs.make-react-secret-available.outputs.trackingid }} |