Skip to content

Commit

Permalink
Fix publish task names
Browse files Browse the repository at this point in the history
  • Loading branch information
alllex committed Aug 2, 2023
1 parent d0df591 commit d4292f5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:

- name: Publish the shared and macOS artifacts
if: matrix.os == 'macOS-latest'
run: ./gradlew publishAllPublicationsToMavenCentralRepository --no-parallel
run: ./gradlew :publishAllPublicationsToSonatypeRepository --no-parallel
env:
ORG_GRADLE_PROJECT_signingKeyId: ${{secrets.SIGNING_KEY_ID}}
ORG_GRADLE_PROJECT_signingKey: ${{secrets.SIGNING_KEY}}
Expand All @@ -47,7 +47,7 @@ jobs:

- name: Publish the windows artifact
if: matrix.os == 'windows-latest'
run: ./gradlew publishMingwX64PublicationToMavenCentralRepository --no-parallel
run: ./gradlew :publishMingwX64PublicationToSonatypeRepository --no-parallel
env:
ORG_GRADLE_PROJECT_signingKeyId: ${{secrets.SIGNING_KEY_ID}}
ORG_GRADLE_PROJECT_signingKey: ${{secrets.SIGNING_KEY}}
Expand All @@ -57,7 +57,7 @@ jobs:

- name: Publish the linux artifact
if: matrix.os == 'ubuntu-latest'
run: ./gradlew publishLinuxX64PublicationToMavenCentralRepository --no-parallel
run: ./gradlew :publishLinuxX64PublicationToSonatypeRepository --no-parallel
env:
ORG_GRADLE_PROJECT_signingKeyId: ${{secrets.SIGNING_KEY_ID}}
ORG_GRADLE_PROJECT_signingKey: ${{secrets.SIGNING_KEY}}
Expand Down

0 comments on commit d4292f5

Please sign in to comment.