Skip to content

Commit

Permalink
WiP, CI: fix dev builds
Browse files Browse the repository at this point in the history
  • Loading branch information
boozook committed Mar 25, 2024
1 parent cf73145 commit 4d5b588
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dev-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ jobs:
id: upload
uses: actions/upload-artifact@v4
with:
name: pdtool-${{ runner.os }}${{ ((runner.os == 'Windows') == 'true') && '.exe' || '' }}
path: target/debug/pdtool
name: pdtool-${{ runner.os }}-${{ runner.arch }}${{ ((runner.os == 'Windows') && '.exe') || ' ' }}
path: target/debug/pdtool${{ ((runner.os == 'Windows') && '.exe') || ' ' }}
if-no-files-found: warn
retention-days: 3
- name: Artifact
Expand Down

0 comments on commit 4d5b588

Please sign in to comment.