Skip to content

Commit

Permalink
Add toJSON and fromJSON
Browse files Browse the repository at this point in the history
  • Loading branch information
sestrella committed Nov 5, 2023
1 parent 6e2604f commit 2db1cbb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- run: echo "version=$(jq -c keys versions.json)" >> "$GITHUB_OUTPUT"
id: list-versions
outputs:
version: ${{ steps.list-versions.ouputs.version }}
version: ${{ toJSON(steps.list-versions.ouputs.version) }}

build:
strategy:
Expand All @@ -24,7 +24,7 @@ jobs:
# system: x86_64-darwin
# - os: ubuntu-latest
# system: x86_64-linux
version: ${{ needs.pre-build.outputs.version }}
version: ${{ fromJSON(needs.pre-build.outputs.version) }}
# runs-on: ${{ matrix.runner.os }}
runs-on: ubuntu-latest
needs: [pre-build]
Expand Down

0 comments on commit 2db1cbb

Please sign in to comment.