Skip to content

set_env & build

set_env & build #2

Workflow file for this run

name: Stag Deploy
run-name: redis-commander-${{ github.ref_name }}
on:
push:
branches:
- INFRA-4132
workflow_dispatch:
jobs:
set_env:
runs-on:
- self-hosted
- "flo-stag"
outputs:
ACCOUNT: ${{ vars.AWS_ACCOUNT_ID_FLOSTAG }}
APP_ENV: stag
APP_NAME: redis-commander
CLUSTER: stag
LOG_LEVEL: trace
DOMAIN: redis-commander.stag-aws.flokubernetes.com
steps: [{ run: "exit 0" }] # noop step to satisfy job requirements
build:
needs: [set_env]
uses: flocasts/github-actions/.github/workflows/shared-build-container.yaml@main

Check failure on line 27 in .github/workflows/stagDeploy.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/stagDeploy.yaml

Invalid workflow file

error parsing called workflow ".github/workflows/stagDeploy.yaml" -> "flocasts/github-actions/.github/workflows/shared-build-container.yaml@main" : workflow was not found. See https://docs.github.com/actions/learn-github-actions/reusing-workflows#access-to-reusable-workflows for more information.
with:
app-env: ${{ needs.set_env.outputs.APP_ENV }}
app-name: ${{ needs.set_env.outputs.APP_NAME }}
build-role: github-actions-deploy-role
build-args: |
--progress=plain
APP_NAME: ${{ needs.set_env.outputs.APP_NAME }}