Skip to content

Commit

Permalink
Update Rust build target in GitHub workflow
Browse files Browse the repository at this point in the history
The target file for the Rust build in the GitHub workflow has been changed from 'backend-rust' to 'authnz-rs'. This update also applies to the stripping and upload actions.
  • Loading branch information
arkavo-com committed Jul 13, 2024
1 parent 5637c3e commit f7a739a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ jobs:
source $HOME/.cargo/env
rustup target add ${{ matrix.target }}
cargo build --release --target ${{ matrix.target }}
strip target/${{ matrix.target }}/release/backend-rust
strip target/${{ matrix.target }}/release/authnz-rs
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.target }}-build
path: target/${{ matrix.target }}/release/backend-rust
path: target/${{ matrix.target }}/release/authnz-rs

0 comments on commit f7a739a

Please sign in to comment.