Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions .github/workflows/make.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

strategy:
matrix:
os: [macos-13, ubuntu-latest, windows-latest]
os: [macos-15, ubuntu-latest, windows-latest]

steps:
- uses: actions/checkout@v3
Expand All @@ -40,7 +40,7 @@ jobs:
run: |
sudo apt update && sudo apt install flatpak flatpak-builder elfutils
# - name: macOS certificate
# if: matrix.os == 'macos-13'
# if: matrix.os == 'macos-15'
# env:
# APPLE_CERTIFICATE: ${{ secrets.APPLE_CERTIFICATE }}
# APPLE_CERTIFICATE_PASSWORD: ${{ secrets.APPLE_CERTIFICATE_PASSWORD }}
Expand All @@ -63,7 +63,7 @@ jobs:
shell: bash
run: |
npm ci
if [[ "${{ matrix.os }}" != "macos-13" ]]; then
if [[ "${{ matrix.os }}" != "macos-15" ]]; then
npm run make -- --no-sign
else
npm run make -- --arch=universal --no-sign
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
strategy:
matrix:
os: [
macos-13,
macos-15,
ubuntu-latest,
windows-latest
]
Expand All @@ -42,13 +42,13 @@ jobs:
with:
python-version: 3.12
- name: install setuptools (macos)
if: matrix.os == 'macos-13'
if: matrix.os == 'macos-15'
run: python3 -m pip install setuptools
- run: npm ci
- name: publish --dry-run
shell: bash
run: |
if [[ "${{ matrix.os }}" != "macos-13" ]]; then
if [[ "${{ matrix.os }}" != "macos-15" ]]; then
npm run publish -- --dry-run
else
npm run publish -- --dry-run --arch=universal
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
strategy:
matrix:
os: [
macos-13,
macos-15,
ubuntu-latest,
windows-latest
]
Expand All @@ -42,11 +42,11 @@ jobs:
with:
python-version: 3.12
- name: install setuptools (macos)
if: matrix.os == 'macos-13'
if: matrix.os == 'macos-15'
run: python3 -m pip install setuptools
- run: npm ci
# - name: macOS certificate
# if: matrix.os == 'macos-13'
# if: matrix.os == 'macos-15'
# env:
# APPLE_CERTIFICATE: ${{ secrets.APPLE_CERTIFICATE }}
# APPLE_CERTIFICATE_PASSWORD: ${{ secrets.APPLE_CERTIFICATE_PASSWORD }}
Expand All @@ -69,7 +69,7 @@ jobs:
# APPLE_SIGNING_ID: ${{ secrets.APPLE_SIGNING_ID }}
shell: bash
run: |
if [[ "${{ matrix.os }}" != "macos-13" ]]; then
if [[ "${{ matrix.os }}" != "macos-15" ]]; then
npm run publish -- --no-sign
else
npm run publish -- --arch=universal --no-sign
Expand Down