Skip to content

Commit

Permalink
fix: stupid json eval...
Browse files Browse the repository at this point in the history
  • Loading branch information
Myriad-Dreamin committed Mar 16, 2024
1 parent ab44319 commit b0f947f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ jobs:
name: pre_check
runs-on: ubuntu-latest
outputs:
is-release: ${{ steps.check_is_release.outputs.isa }}
tagged: ${{ steps.check_is_release.outputs.isa }}
steps:
- name: check_is_release
id: check_is_release
run: echo "::set-output name=isa::${{ startsWith(github.ref, 'refs/tags/') }}"
run: echo "isa=${{ startsWith(github.ref, 'refs/tags/') }}" >> $GITHUB_OUTPUT
build:
strategy:
matrix:
is-release: ${{ fromJson(needs.pre_check.outputs.is-release) }}
is-release: ${{ fromJson(needs.pre_check.outputs.tagged) }}
include:
- is-release: false
os: windows-latest
Expand Down

0 comments on commit b0f947f

Please sign in to comment.