Skip to content

Commit

Permalink
Upgrade CI
Browse files Browse the repository at this point in the history
  • Loading branch information
DRSchlaubi committed Feb 1, 2024
1 parent 143ad49 commit c10504a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
name: Build Desktop App
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
os: [ ubuntu-latest, macos-14, windows-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
Expand All @@ -56,7 +56,7 @@ jobs:
tar xzvf jextract.tar.gz
- name: Setup MacOS signing
if: matrix.os == 'macos-latest'
if: matrix.os == 'macos-14'
env:
BUILD_CERTIFICATE_BASE64: ${{ secrets.MACOS_SIGNING_CERTIFICATE }}
P12_PASSWORD: ${{ secrets.MAC_SIGNING_PASSWORD }}
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
run: |
& 'C:/Program Files (x86)/Windows Kits/10/bin/10.0.22621.0/x64/makeappx.exe' pack /d app/desktop/build/msix-workspace /p Tonbrett.msix
- name: Notarize MacOS installer
if: matrix.os == 'macos-latest'
if: matrix.os == 'macos-14'
env:
NOTARIZATION_PASSWORD: ${{ secrets.NOTARIZATION_PASSWORD }}
run: ./gradlew notarizeReleasePkg -Pcompose.desktop.mac.sign=true
Expand Down Expand Up @@ -248,7 +248,7 @@ jobs:
Complete-ApplicationSubmission -AppId $appId -SubmissionId ($sub.id)
build_ios_app:
name: Deploy to test flight
runs-on: macos-13
runs-on: macos-14
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: maxim-lobanov/setup-xcode@v1
Expand Down Expand Up @@ -299,7 +299,7 @@ jobs:
- uses: actions/download-artifact@v3
name: Download Artifacts from MacOS
with:
name: desktopapp-macos-latest
name: desktopapp-macos-14
- uses: actions/download-artifact@v3
name: Download Artifacts from Windows
with:
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {

allprojects {
group = "dev.schlaubi.tonbrett"
version = "1.18.9"
version = "1.18.10"

repositories {
mavenCentral()
Expand Down

0 comments on commit c10504a

Please sign in to comment.