From 4e64905c27c9eb1e4c5012d382ee9d7153ece416 Mon Sep 17 00:00:00 2001 From: Xevion Date: Tue, 23 Apr 2024 23:18:20 -0500 Subject: [PATCH] Fix executable path for artifact upload --- .github/workflows/linux.yaml | 2 +- .github/workflows/windows.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linux.yaml b/.github/workflows/linux.yaml index 9fd727c..e9acdfb 100644 --- a/.github/workflows/linux.yaml +++ b/.github/workflows/linux.yaml @@ -32,6 +32,6 @@ jobs: - name: Upload Artifact uses: actions/upload-artifact@v4 with: - path: ./target/pacman + path: ./target/release/pacman retention-days: 7 if-no-files-found: error \ No newline at end of file diff --git a/.github/workflows/windows.yaml b/.github/workflows/windows.yaml index 0426358..fbd33e0 100644 --- a/.github/workflows/windows.yaml +++ b/.github/workflows/windows.yaml @@ -58,6 +58,6 @@ jobs: - name: Upload Artifact uses: actions/upload-artifact@v4 with: - path: ./target/pacman.exe + path: ./target/release/pacman.exe retention-days: 7 if-no-files-found: error \ No newline at end of file