Skip to content

Commit fea3735

Browse files
committed
Now that we cannot build macosX64 artifacts anymore, remove macos-13 builds.
1 parent ae19143 commit fea3735

File tree

1 file changed

+1
-14
lines changed

1 file changed

+1
-14
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
os: [ubuntu-24.04, macos-13, macos-14]
16+
os: [ubuntu-24.04, macos-14]
1717
steps:
1818
- name: checkout
1919
uses: actions/checkout@v4
@@ -43,19 +43,6 @@ jobs:
4343
gradlePath: ktmidi-ci-tool/build.gradle.kts
4444
versionCode: ${{github.run_number}}
4545

46-
# only for NON-releases on macos-13
47-
- name: macos-13 lightweight build with Gradle for libs
48-
if: ${{ !startsWith(github.ref, 'refs/tags/') && contains(matrix.os, 'macos-13') }}
49-
run: ./gradlew --warning-mode all publishToMavenLocal
50-
# only for releases on macos-13
51-
- name: macos-13 lightweight publish with Gradle for libs
52-
if: ${{ startsWith(github.ref, 'refs/tags/') && contains(matrix.os, 'macos-13') }}
53-
run: ./gradlew --no-daemon --warning-mode all publishMacosX64PublicationToMavenCentralRepository publishIosX64PublicationToMavenCentralRepository
54-
env:
55-
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.MAVEN_CENTRAL_USERNAME }}
56-
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.MAVEN_CENTRAL_PASSWORD }}
57-
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.SIGNING_PASSWORD }}
58-
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.GPG_KEY_CONTENTS }}
5946
# only for NON-releases on macos-14
6047
- name: macos-14 lightweight build with Gradle for libs and apps
6148
if: ${{ !startsWith(github.ref, 'refs/tags/') && contains(matrix.os, 'macos-14') }}

0 commit comments

Comments
 (0)