Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
bkchr committed Sep 26, 2023
1 parent 66323f0 commit c63f0f8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ jobs:
- uses: actions/checkout@v2
- id: set-matrix
run: |
TASKS=$(echo $(cat .github/workflows/matrix.json) | sed 's/ //g' )
echo "matrix=$TASKS" >> $GITHUB_OUTPUT
TASKS=$(echo $(cat .github/workflows/release-matrix.json) | sed 's/ //g' )
echo "runtime=$TASKS" >> $GITHUB_OUTPUT
build-runtimes:
needs: [ matrix ]
continue-on-error: true
runs-on: ubuntu-latest
strategy:
matrix:
runtime: ${{ fromJSON(needs.matrix.outputs.matrix) }}
runtime: ${{ fromJSON(needs.matrix.outputs.runtime) }}
steps:
- name: Checkout sources
uses: actions/checkout@v3
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
RUNTIME_DIR: runtime
strategy:
matrix:
runtime: ${{ fromJSON(needs.matrix.outputs.matrix) }}
runtime: ${{ fromJSON(needs.matrix.outputs.runtime) }}
steps:
- name: Checkout sources
uses: actions/checkout@v3
Expand Down

0 comments on commit c63f0f8

Please sign in to comment.