Skip to content

Commit

Permalink
Fix Github Actions CI
Browse files Browse the repository at this point in the history
  • Loading branch information
louis-e authored Jan 8, 2025
1 parent 9570d05 commit 999dd8d
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 @@ -42,10 +42,10 @@ jobs:
echo "PKG_CONFIG_PATH=/usr/lib/x86_64-linux-gnu/pkgconfig" >> $GITHUB_ENV
- name: Install dependencies
run: cargo fetch --locked
run: cargo fetch

- name: Build
run: cargo build --frozen --release
run: cargo build --release

- name: Upload artifact
uses: actions/upload-artifact@v3
Expand Down

1 comment on commit 999dd8d

@TheComputerGuy96
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This could've also been fixed by bumping the version here: https://github.com/louis-e/arnis/blob/main/Cargo.lock#L171 (cargo update --offline would also do the same thing)

Please sign in to comment.