Skip to content

Commit

Permalink
fix: update target parameter in GitHub Actions workflow
Browse files Browse the repository at this point in the history
Changed the 'target' parameter from 'matrix.os' to 'matrix.target' in the release_and_publish.yml file. This change affects both the toolchain setup and build steps of the workflow.
  • Loading branch information
rrrodzilla committed Jul 24, 2024
1 parent ebc91fc commit ffa690c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release_and_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,15 +136,15 @@ jobs:
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: ${{ matrix.os }}
target: ${{ matrix.target }}
override: true

- name: Build
if: matrix.exists == 'false'
uses: actions-rs/cargo@v1
with:
command: build
args: --release --target ${{ matrix.os }}
args: --release --target ${{ matrix.target }}
- name: Package Binary
if: matrix.exists == 'false'
env:
Expand Down

0 comments on commit ffa690c

Please sign in to comment.