Skip to content

Commit

Permalink
ci: add macos-14
Browse files Browse the repository at this point in the history
  • Loading branch information
toyobayashi committed Apr 22, 2024
1 parent 4db7a6a commit 4a1c733
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest, macos-13]
os: [windows-latest, ubuntu-latest, macos-13, macos-14]

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -57,13 +57,17 @@ jobs:
MISHIRO_NO_PROGRESS: '1'

- name: Pack x64
if: ${{ startsWith(github.event.ref, 'refs/tags') }}
if: ${{ startsWith(github.event.ref, 'refs/tags') && matrix.os != 'macos-14' }}
run: cd app&&npm run pack:x64&&cd ..

- name: Pack ia32
if: ${{ startsWith(github.event.ref, 'refs/tags') && matrix.os == 'windows-latest' }}
run: cd app&&npm run pack:ia32&&cd ..

- name: Pack arm64
if: ${{ startsWith(github.event.ref, 'refs/tags') && matrix.os == 'macos-14' }}
run: cd app&&npm run pack:arm64&&cd ..

- name: Create release
if: ${{ startsWith(github.event.ref, 'refs/tags') }}
uses: toyobayashi/upload-release-assets@v3.0.0
Expand Down

0 comments on commit 4a1c733

Please sign in to comment.