Skip to content

Commit

Permalink
fix: $OS -> $RUNNER_OS
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiroshiba committed Dec 25, 2024
1 parent 53ad1a8 commit 0a22006
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/actions/cargo-binstall-cbindgen/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ runs:
- name: Install cbindgen
shell: bash
run: |
case "$OS" in
case "$RUNNER_OS" in
Windows)
cargo install cbindgen --version ${{ inputs.version }};;
macOS | Linux )
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ jobs:
- name: Rename the binary
shell: bash
run: |
case "$OS" in
case "$RUNNER_OS" in
Windows) exe_suffix=.exe;;
Linux | macOS) exe_suffix=;;
esac
Expand Down

0 comments on commit 0a22006

Please sign in to comment.