Skip to content

Commit

Permalink
publish.yml: Fix macos path
Browse files Browse the repository at this point in the history
  • Loading branch information
Gamer64ytb committed Aug 6, 2024
1 parent 64f29e7 commit a22d894
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
run: |
curl -L -o macos-universal.zip https://nightly.link/mandarine3ds/mandarine/workflows/build/master/macos-universal.zip
unzip macos-universal.zip -d ./macos-universal
mv ./macos-universal/mandarine-macos-universal-*.7z ./macos-universal.7z
mv ./macos-universal/mandarine-macos-universal-*.tar.gz ./macos-universal.tar.gz
- name: Download/Unzip Source Artifact
run: |
Expand Down Expand Up @@ -106,9 +106,9 @@ jobs:
GITHUB_TOKEN: ${{ secrets.MANDARINE_BUILD }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./macos-universal.7z
asset_name: macos-universal.7z
asset_content_type: application/x-7z-compressed
asset_path: ./macos-universal.tar.gz
asset_name: macos-universal.tar.gz
asset_content_type: application/gzip

- name: upload source artifact
uses: actions/upload-release-asset@v1
Expand Down

1 comment on commit a22d894

@username227
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FYI, I created a package for Arch that is now on the AUR here: https://aur.archlinux.org/packages/mandarine. I've done a couple of different forks so i used my experiences with those and did it pretty easily. It pulls in based on the tag r1.0 which goes through this commit. I can keep it updated for future releases, and I can also create a git package that will update for each commit. Hope this is helpful.

Please sign in to comment.