git.delta.rocks / unique-network / refs/commits / 1128fb0a50a3

difftreelog

fix forkless build and tests workflow steps

Konstantin Astakhov2023-01-25parent: #19c2b94.patch.diff
in: master

1 file changed

modified.github/workflows/forkless.ymldiffbeforeafterboth
before · .github/workflows/forkless.yml
1# Intermediate Nested Workflow for calling subworkflows as a parallel tasks.23name: Nesting Forkless45on:6  workflow_call:78jobs:9    10  forkless-update-data:11    name: with data12    uses: ./.github/workflows/forkless-update-data.yml13    secrets: inherit # pass all secrets from initial workflow to nested    1415  forkless-update-no-data:16    name: no data17    uses: ./.github/workflows/forkless-update-nodata.yml18    secrets: inherit # pass all secrets from initial workflow to nested    1920  try-runtime:21    name: try-runtime22    uses: ./.github/workflows/try-runtime.yml23    secrets: inherit # pass all secrets from initial workflow to nested    
after · .github/workflows/forkless.yml
1# Intermediate Nested Workflow for calling subworkflows as a parallel tasks.23# name: Nesting Forkless45# on:6#   workflow_call:78# jobs:9    10#   forkless-update-data:11#     name: with data12#     uses: ./.github/workflows/forkless-update-data.yml13#     secrets: inherit # pass all secrets from initial workflow to nested    1415#   forkless-update-no-data:16#     name: no data17#     uses: ./.github/workflows/forkless-update-nodata.yml18#     secrets: inherit # pass all secrets from initial workflow to nested    1920#   try-runtime:21#     name: try-runtime22#     uses: ./.github/workflows/try-runtime.yml23#     secrets: inherit # pass all secrets from initial workflow to nested