Skip to content

Commit

Permalink
Merge pull request #55 from takano32/fix-github-actions-for-update-bu…
Browse files Browse the repository at this point in the history
…ild-scripts

Fix GitHub Actions for `Update build scripts`
  • Loading branch information
RupertAvery authored Oct 13, 2023
2 parents e47ae40 + 09eed0f commit 8167a50
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ jobs:
- name: Tar linux-x64 files
run: |
cd build
mv {,psxpackager-}linux-x64
tar cvf psxpackager-linux-x64{.tar,}
- name: Upload linux-x64 Tar
uses: actions/upload-artifact@v3
Expand All @@ -35,7 +34,6 @@ jobs:
- name: Tar linux-arm files
run: |
cd build
mv {,psxpackager-}linux-arm
tar cvf psxpackager-linux-arm{.tar,}
- name: Upload linux-arm Tar
uses: actions/upload-artifact@v3
Expand All @@ -45,7 +43,6 @@ jobs:
- name: Tar linux-arm64 files
run: |
cd build
mv {,psxpackager-}linux-arm64
tar cvf psxpackager-linux-arm64{.tar,}
- name: Upload linux-arm64 Tar
uses: actions/upload-artifact@v3
Expand All @@ -55,7 +52,6 @@ jobs:
- name: Tar osx-x64 files
run : |
cd build
mv {,psxpackager-}osx-x64
tar cvf psxpackager-osx-x64{.tar,}
- name: Upload osx-x64 Tar
uses: actions/upload-artifact@v3
Expand All @@ -65,7 +61,6 @@ jobs:
- name: Tar osx-arm64 files
run : |
cd build
mv {,psxpackager-}osx-arm64
tar cvf psxpackager-osx-arm64{.tar,}
- name: Upload osx-arm64 Tar
uses: actions/upload-artifact@v3
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@ jobs:
with:
msbuild-architecture: x64

- name: Install unzip
run: choco install -y zip

- name: Test
run: make test

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

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

0 comments on commit 8167a50

Please sign in to comment.