Fix executable path for artifact upload

This commit is contained in:
2024-04-23 23:18:20 -05:00
parent db0e94e22c
commit 4e64905c27
2 changed files with 2 additions and 2 deletions

View File

@@ -32,6 +32,6 @@ jobs:
- name: Upload Artifact - name: Upload Artifact
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:
path: ./target/pacman path: ./target/release/pacman
retention-days: 7 retention-days: 7
if-no-files-found: error if-no-files-found: error

View File

@@ -58,6 +58,6 @@ jobs:
- name: Upload Artifact - name: Upload Artifact
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:
path: ./target/pacman.exe path: ./target/release/pacman.exe
retention-days: 7 retention-days: 7
if-no-files-found: error if-no-files-found: error