Skip to content

Commit

Permalink
fix(.github): use stable to handle release builds
Browse files Browse the repository at this point in the history
  • Loading branch information
pandres95 committed Jan 14, 2025
1 parent 3cd7383 commit 4c334ef
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/benchmarking.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ jobs:
shell: bash
run: sudo apt update && sudo apt install -y protobuf-compiler

- name: Use Nightly
- name: Use Stable
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
toolchain: stable
target: wasm32-unknown-unknown
components: rust-src

Expand All @@ -34,7 +34,8 @@ jobs:
command: build
args: --release --features runtime-benchmarks

- uses: actions/upload-artifact@v4
- name: Upload runtime to artifacts
uses: actions/upload-artifact@v4
with:
name: ${{ github.run_number }}-runtime
path: ./target/release/wbuild/kreivo-runtime/kreivo_runtime.compact.compressed.wasm
Expand All @@ -53,7 +54,8 @@ jobs:
run: |
mkdir -p .benchmarking-logs target/release
- uses: actions/download-artifact@v4
- name: Get artifacts
uses: actions/download-artifact@v4
with:
name: ${{ github.run_number }}-runtime
path: ./target/release
Expand Down

0 comments on commit 4c334ef

Please sign in to comment.