Skip to content

Commit

Permalink
Artifact name's prefix is psxpackager
Browse files Browse the repository at this point in the history
  • Loading branch information
takano32 committed Apr 10, 2023
1 parent cbc223f commit 48829cb
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 11 deletions.
27 changes: 18 additions & 9 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,23 +20,32 @@ jobs:
run: make

- name: Tar linux-x64 files
run: cd build && tar cvf linux-x64.tar linux-x64
run: |
cd build
mv {,psxpackager-}linux-x64
tar cvf psxpackager-linux-x64{.tar,}
- name: Upload linux-x64 Tar
uses: actions/upload-artifact@v3
with:
name: linux-x64
path: build/linux-x64.tar
name: psxpackager-linux-x64
path: build/psxpackager-linux-x64.tar
- name: Tar osx-x64 files
run : cd build && tar cvf osx-x64.tar osx-x64
run : |
cd build
mv {,psxpackager-}osx-x64
tar cvf psxpackager-osx-x64{.tar,}
- name: Upload osx-x64 Tar
uses: actions/upload-artifact@v3
with:
name: osx-x64
path: build/osx-x64.tar
name: psxpackager-osx-x64
path: build/psxpackager-osx-x64.tar
- name: Tar osx-arm64 files
run : cd build && tar cvf osx-arm64.tar osx-arm64
run : |
cd build
mv {,psxpackager-}osx-arm64
tar cvf psxpackager-osx-arm64{.tar,}
- name: Upload osx-arm64 Tar
uses: actions/upload-artifact@v3
with:
name: osx-arm64
path: build/osx-arm64.tar
name: psxpackager-osx-arm64
path: build/psxpackager-osx-arm64.tar
5 changes: 3 additions & 2 deletions .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ jobs:
msbuild-architecture: x64

- name: Publish
run: .\build-all.cmd
# run: .\build-all.cmd
run: make

- name: Upload PsxPackagerGUI Artifact
uses: actions/upload-artifact@v3
Expand All @@ -27,5 +28,5 @@ jobs:
- name: Upload win-x64 Artifact
uses: actions/upload-artifact@v3
with:
name: win-x64
name: psxpackager-win-x64
path: build\win-x64\**

0 comments on commit 48829cb

Please sign in to comment.