Skip to content

Commit

Permalink
fix build publish
Browse files Browse the repository at this point in the history
  • Loading branch information
trembon committed Feb 19, 2024
1 parent 28c1c34 commit 9fa670e
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/actions/publish-artifacts/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,21 @@ runs:
steps:
- name: Upload Windows build
uses: actions/upload-artifact@v4
working-directory: ./src
with:
name: switch-library-manager.windows-amd64
path: output/windows-amd64/*
path: src/output/windows-amd64/*
if-no-files-found: error

- name: Upload Linux build
uses: actions/upload-artifact@v4
working-directory: ./src
with:
name: switch-library-manager.linux-amd64
path: output/linux-amd64/*
path: src/output/linux-amd64/*
if-no-files-found: error

- name: Upload Mac build
uses: actions/upload-artifact@v4
working-directory: ./src
with:
name: switch-library-manager.darwin-amd64
path: output/darwin-amd64/*
path: src/output/darwin-amd64/*
if-no-files-found: error

0 comments on commit 9fa670e

Please sign in to comment.