Skip to content

Commit

Permalink
Fix uploads in the CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Hoverbear committed Jan 22, 2025
1 parent ecc5bc7 commit 164e965
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,19 +72,19 @@ jobs:

- name: Build debug builds
shell: bash
run: cargo build
run: cargo build --workspace

- name: Upload criticalup debug build
uses: actions/upload-artifact@v4
with:
name: criticalup-${{ matrix.os }}
path: target/debug/criticalup
path: target/debug/criticalup${{ (runner.os == 'Windows' && '.exe') || '' }}

- name: Upload upload criticalup-dev debug build
uses: actions/upload-artifact@v4
with:
name: criticalup-dev-${{ matrix.os }}
path: target/debug/criticalup-dev
path: target/debug/criticalup-dev${{ (runner.os == 'Windows' && '.exe') || '' }}

- name: Upload cargo timings
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 164e965

Please sign in to comment.