Ubuntu – github actions doesn't recognize configuration variables
I am using the very simple workflow: name: Deploy Frontend # env: # REACT_APP_API_URL: ${{ vars.REACT_APP_API_URL }} # CORS_ALLOWED_ORIGINS: ${{ vars.CORS_ALLOWED_ORIGINS }} env: REACT_APP_API_URL: MY_REACT_APP_API_URL CORS_ALLOWED_ORIGINS: MY_CORS_ALLOWED_ORIGINS on: push: branches: [main, staging, frontend] paths: - 'frontend/**' - '.github/workflows/deploy_frontend.yml' workflow_dispatch: jobs:…