Skip to content

move to frontend

move to frontend #17

Workflow file for this run

name: Build and Deploy full app
on:
push:
branches: reusable-actions-combine-frontend-api
# workflow_dispatch:
# inputs:
# deploy_env:
# description: 'The environment to deploy to'
# required: true
# type: choice
# options:
# - dev
# - dev2
# - dev3
# - dev4
# - dev5
# - dev6
# ocr-version:
# description: 'The environment to deploy to'
# required: true
permissions:
id-token: write
contents: read
env:
NODE_VERSION: 20
REGISTRY: ghcr.io
VERSION: derek-dev-combine
deploy_env: dev
jobs:
# build_publish_ocr:
# runs-on: ubuntu-latest
# permissions:
# contents: read
# packages: write
# attestations: write
# id-token: write
# steps:
# - uses: actions/checkout@v4
# - name: Build and Push backend
# uses: ./.github/actions/build-publish-ocr
# with:
# deploy_env: ${{ env.deploy_env }}
# token: ${{ secrets.GITHUB_TOKEN }}
# username: ${{ github.actor }}
build_frontend:
runs-on: ubuntu-latest
environment: ${{ env.deploy_env }}

Check failure on line 52 in .github/workflows/deploy-dev.yml

View workflow run for this annotation

GitHub Actions / Build and Deploy full app

Invalid workflow file

The workflow is not valid. .github/workflows/deploy-dev.yml (Line: 52, Col: 18): Unrecognized named-value: 'env'. Located at position 1 within expression: env.deploy_env
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/build-frontend
name: Build front-end application
with:
frontend_tarball: ./frontend.tgz
deploy_env: ${{ env.deploy_env }}
# prerelease_backend:
# runs-on: ubuntu-latest
# needs: [build_frontend, build_docker_ocr]
# steps:
# - uses: actions/checkout@v4
# - uses: ./.github/actions/tf-deploy
# name: Deploy with Terraform
# with:
# deploy_env: ${{ env.deploy_env }}
# azure_client_id: ${{ secrets.AZURE_CLIENT_ID }}
# azure_tenant_id: ${{ secrets.AZURE_TENANT_ID }}
# azure_subscription_id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
# deploy:
# name: Deploy
# runs-on: ubuntu-latest
# environment: ${{ env.deploy_env }}
# needs: [build_frontend]
# steps:
# - uses: actions/checkout@v4
# - name: Promote and deploy
# uses: ./.github/actions/deploy-frontend
# with:
# azure_client_id: ${{ secrets.AZURE_CLIENT_ID }}
# azure_tenant_id: ${{ secrets.AZURE_TENANT_ID }}
# azure_subscription_id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
# frontend_tarball: frontend.tgz
# deploy_env: ${{ env.deploy_env }}
# - name: Lowercase the repo name
# run: echo "REPO=${GITHUB_REPOSITORY,,}" >>${GITHUB_ENV}
# - name: Deploy to Azure Web App
# id: deploy-to-webapp
# uses: azure/webapps-deploy@v3
# with:
# app-name: reportvision-ocr-api-${{ env.deploy_env }}
# publish-profile: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }}
# images: '${{ env.REGISTRY }}/${{ env.REPO }}-ocr-api:${{ env.VERSION }}'