Skip to content

🛠️ Using env tokens. (ac0a1b1faed63d20096a5d06538a5d408b4d67e2) #54

🛠️ Using env tokens. (ac0a1b1faed63d20096a5d06538a5d408b4d67e2)

🛠️ Using env tokens. (ac0a1b1faed63d20096a5d06538a5d408b4d67e2) #54

Workflow file for this run

name: Big Bang CI/CD Pipeline
run-name: "🛠️ ${{ github.event.head_commit.message }} (${{ github.sha }})"
on:
push:
branches:
- big-bang-demo #normally 'main'
jobs:
ci-frontend:
uses: ./.github/workflows/ci-frontend.yml
with:
ref: ${{ github.sha }}
ci-backend:
uses: ./.github/workflows/ci-backend.yml
with:
ref: ${{ github.sha }}
cd-backend:
needs: [ci-frontend, ci-backend]
uses: ./.github/workflows/cd-backend.yml

Check failure on line 21 in .github/workflows/ci-cd.yaml

View workflow run for this annotation

GitHub Actions / Big Bang CI/CD Pipeline

Invalid workflow file

The workflow is not valid. In .github/workflows/ci-cd.yaml (Line: 21, Col: 11): Error from called workflow bsommardahl/anyhasher/.github/workflows/cd-backend.yml@ac0a1b1faed63d20096a5d06538a5d408b4d67e2 (Line: 20, Col: 16): Unrecognized named-value: 'env'. Located at position 1 within expression: env.backend_host
with:
ref: ${{ github.sha }}
secrets: inherit
cd-frontend:
needs: [cd-backend]
uses: ./.github/workflows/cd-frontend.yml
with:
ref: ${{ github.sha }}
backend_url: ${{ needs.cd-backend.outputs.backend_url }}
secrets: inherit