Skip to content

Commit 7681201

Browse files
authored
Merge pull request #379 from zsmb13/patch-1
Fix publish step condition in CI workflow
2 parents 76981f0 + 045046f commit 7681201

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)