Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: try to fix macos build #908

Merged
merged 1 commit into from
Feb 3, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/macos-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ jobs:
- name: Install libmpv
run: |
brew install mpv
- name: Setup OS version and ARCH
run: |
echo "FUO_MACOS_VERSION=`sw_vers --productVersion`" >> $GITHUB_ENV
- name: Setup DYLD path for macos-arm64
if: matrix.os == 'macos-latest'
run: |
Expand All @@ -54,7 +57,7 @@ jobs:
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: FeelUOwnX-macOS${{ env.DIST_MACOS_VERSION }}-${{ env.DIST_ARCH }}.zip
name: FeelUOwnX-macOS${{ env.FUO_MACOS_VERSION }}-${{ env.RUNNER_ARCH }}.zip
path: dist/FeelUOwnX*.zip
- name: Upload to release page
if: startsWith(github.ref, 'refs/tags/v')
Expand Down
Loading