Skip to content

Commit

Permalink
Attempt to fix variable syntax in release.yml again
Browse files Browse the repository at this point in the history
  • Loading branch information
jadelily18 committed Oct 21, 2023
1 parent c7c189b commit b1cecb4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ jobs:
if: matrix.platform.os == 'windows-latest'
run: echo "Windows :("
env:
version_arg: 'package.version=\\\"${{ github.event.inputs.version }}\\\"'
version_arg: "'package.version=\\\"${{ github.event.inputs.version }}\\\"'"
- name: Set version argument (Non-Windows)
if: matrix.platform.os != 'windows-latest'
run: echo "Not Windows :)"
env:
version_arg: 'package.version=\"${{ github.event.inputs.version }}\"'
version_arg: "'package.version=\"${{ github.event.inputs.version }}\"'"
- name: Build binary
uses: houseabsolute/actions-rust-cross@v0
with:
Expand Down

0 comments on commit b1cecb4

Please sign in to comment.