Skip to content

Commit

Permalink
CI: Fix MacOS checks
Browse files Browse the repository at this point in the history
  • Loading branch information
CoffeeFlux committed Jul 14, 2024
1 parent e503821 commit 0a2c5d8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
popd
- name: Install dependencies (MacOS)
if: matrix.config.os == 'macos-latest'
if: startsWith(matrix.config.os, 'macos-')
run: |
export HOMEBREW_NO_INSTALL_CLEANUP=1
export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1
Expand Down Expand Up @@ -158,14 +158,14 @@ jobs:

# macOS artifacts
- name: Generate macOS installer
if: matrix.config.os == 'macos-latest'
if: startsWith(matrix.config.os, 'macos-')
run: |
meson compile osx-bundle -C build
meson compile osx-build-dmg -C build
- name: Upload artifacts - macOS dmg
uses: actions/upload-artifact@v3
if: matrix.config.os == 'macos-latest'
if: startsWith(matrix.config.os, 'macos-')
with:
name: ${{ matrix.config.name }} - installer
path: build/Aegisub-*.dmg
Expand Down

0 comments on commit 0a2c5d8

Please sign in to comment.