🛠️ Using env tokens. (ac0a1b1faed63d20096a5d06538a5d408b4d67e2) #54
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 GitHub Actions / Big Bang CI/CD PipelineInvalid workflow file
|
||
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 |