Skip to content

test frontend workflow with changes #25

test frontend workflow with changes

test frontend workflow with changes #25

name: Build and Deploy Frontend
on:
push:
branches: fix-docker-image-check
# workflow_dispatch:
# inputs:
# deploy-env:
# description: 'The environment to deploy to'
# required: true
# type: choice
# options:
# - dev
# - demo
# demo-blob-name:
# description: 'After the demo env gets created, copy its blob storage name here'
# required: false
permissions:
id-token: write
contents: read
jobs:
build-frontend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/build-frontend
name: Build frontend
with:
api-endpoint: https://reportvision-ocr-dev.azurewebsites.net/
frontend-tarball: ./frontend.tgz
frontend-path: ./frontend
frontend-build-path: ./frontend/dist/
node-version: 20
deploy-with-blob-name-optional:
name: Deploy
runs-on: ubuntu-latest
environment: dev
needs: [build-frontend]
steps:
- name: Download Artifacts To Job
uses: actions/download-artifact@v4
with:
name: frontend-tarball
- name: Unpack client
shell: bash
run: |
mkdir frontend-deploy;
tar -C frontend-deploy -zxvf frontend.tgz
- name: Azure login
uses: azure/login@v2
with:
client-id: ${{ secrets.AZURE_CLIENT_ID }}
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
- name: Upload to Azure blob storage
shell: bash
run: |
if [ -z "" ]; then
az storage blob upload-batch --account-name reportvisionfrontenddev -d '$web' -s frontend-deploy/ --overwrite
else
az storage blob upload-batch --account-name ${{ inputs.demo-blob-name }} -d '$web' -s frontend-deploy/ --overwrite
fi
- name: Azure logout
shell: bash
run: |
az logout