Skip to content

Use format()

Use format() #4

Workflow file for this run

name: Full Chain
on:
workflow_dispatch:
jobs:
call-setup:
uses: ./.github/setup.yml

Check failure on line 7 in .github/workflows/chain-full.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/chain-full.yml

Invalid workflow file

invalid value workflow reference: no version specified
call-portage:
uses: ./.github/portage.yml
needs:
- call-setup
with:
portage_date: ${{ needs.call-setup.outputs.portage_date }}
call-builders:
uses: ./.github/builders.yml
needs:
- call-setup
- call-portage
with:
portage_date: ${{ needs.call-setup.outputs.portage_date }}
portage_image: ${{ needs.call-portage.outputs.portage_image }}
call-kubler-build:
uses: ./.github/kubler-build.yml
needs:
- call-setup
- call-portage
- call-builders
with:
portage_date: ${{ needs.call-setup.outputs.portage_date }}
portage_image: ${{ needs.call-portage.outputs.portage_image }}