Skip to content

Commit

Permalink
fix steam ci
Browse files Browse the repository at this point in the history
  • Loading branch information
tsukinoko-kun committed Jul 12, 2024
1 parent f5df212 commit 4ecdde5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -328,16 +328,18 @@ jobs:
uses: actions/download-artifact@v4
with:
name: linux-executable
path: linux-executable
- name: Rename Linux executable
run: |
mv linux-executable/mageanoid dist/mageanoid_linux_x86
mv /mageanoid dist/mageanoid_linux_x86
chmod 777 dist/mageanoid_linux_x86
rm -rf linux-executable
- name: Download Windows executable
uses: actions/download-artifact@v4
with:
name: windows-executable
path: windows-executable
- name: Rename Windows executable
run: |
mv windows-executable/mageanoid.exe dist/mageanoid.exe
Expand All @@ -347,6 +349,7 @@ jobs:
uses: actions/download-artifact@v4
with:
name: mac-x86-executable
path: mac-x86-executable
- name: Rename MacOS executables
run: |
mv mac-x86-executable/mageanoid dist/mageanoid_mac_x86
Expand All @@ -357,6 +360,7 @@ jobs:
uses: actions/download-artifact@v4
with:
name: mac-arm-executable
path: mac-arm-executable
- name: Rename MacOS Apple Silicon executables
run: |
mv mac-arm-executable/mageanoid dist/mageanoid_mac_arm
Expand Down

0 comments on commit 4ecdde5

Please sign in to comment.