Skip to content

Commit 045046f

Browse files
authored
Fix publish step condition in CI workflow
1 parent 76981f0 commit 045046f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
gradle-${{ runner.os }}-
4646
4747
- name: Publish the macOS artifacts
48-
if: matrix.os == 'macos-14'
48+
if: matrix.os == 'macos-latest'
4949
env:
5050
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.NEXUS_USERNAME }}
5151
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.NEXUS_PASSWORD }}
@@ -174,4 +174,4 @@ jobs:
174174
prerelease: ${{ contains(github.ref, '-rc') || contains(github.ref, '-b') || contains(github.ref, '-a') }}
175175
files: artifacts/*
176176
env:
177-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
177+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)