Skip to content

Deployment Frontend (DEV) #13

Deployment Frontend (DEV)

Deployment Frontend (DEV) #13

Workflow file for this run

name: Deployment Frontend (DEV)
on:
workflow_dispatch:
inputs:
DEPLOY_APP_CUSTOMERS:
type: boolean
description: "(Customers) Enable customer app deployment"
default: true
schedule:
# Run once a day. 7PM UTC.
- cron: "34 23 8 1 *"
# Ensure that only one dev workflow runs at a time.
concurrency:
group: deployment-frontend-dev
cancel-in-progress: true
env:
DEPLOY_APP_CUSTOMERS: ${{ github.event_name == 'schedule' && 'true' || github.event.inputs.DEPLOY_APP_CUSTOMERS }}
jobs:
fe-customers:
if: env.DEPLOY_APP_CUSTOMERS == 'true'

Check failure on line 23 in .github/workflows/dart.yml

View workflow run for this annotation

GitHub Actions / Deployment Frontend (DEV)

Invalid workflow file

The workflow is not valid. .github/workflows/dart.yml (Line: 23, Col: 9): Unrecognized named-value: 'env'. Located at position 1 within expression: env.DEPLOY_APP_CUSTOMERS == 'true'
uses: ./.github/workflows/deployment_customers_dev.yml