Skip to content

Commit

Permalink
Update rust.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Senya01 authored Nov 26, 2024
1 parent d9d4589 commit 44d9b71
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,21 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Set up Rust
uses: actions/setup-rust@v1
with:
rust-version: 1.82.0

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

- name: Create a GitHub Release
uses: softprops/action-gh-release@v1
with:
files: target/release/*

- name: Upload release assets
uses: actions/upload-artifact@v3
with:
name: release-assets
path: target/release/*

0 comments on commit 44d9b71

Please sign in to comment.