Skip to content

Commit b33fff1

Browse files
committed
Update actions
1 parent f865fe1 commit b33fff1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/publish-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ jobs:
2020
java-version: 11
2121

2222
- name: Upload release
23-
run: ./gradlew mode-s:uploadArchives --no-daemon --no-parallel
23+
run: ./gradlew uploadArchives --no-daemon --no-parallel
2424
env:
2525
ORG_GRADLE_PROJECT_SONATYPE_NEXUS_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
2626
ORG_GRADLE_PROJECT_SONATYPE_NEXUS_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
2727
ORG_GRADLE_PROJECT_SIGNING_PRIVATE_KEY: ${{ secrets.GPG_SECRET_KEYS }}
2828

2929
- name: Publish release
30-
run: ./gradlew mode-s:closeAndReleaseRepoistory --no-daemon --no-parallel
30+
run: ./gradlew closeAndReleaseRepoistory --no-daemon --no-parallel
3131
env:
3232
ORG_GRADLE_PROJECT_SONATYPE_NEXUS_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
3333
ORG_GRADLE_PROJECT_SONATYPE_NEXUS_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}

.github/workflows/publish-snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
run: |
2424
echo "VERSION_NAME=$(cat gradle.properties | grep -w 'VERSION_NAME' | cut -d'=' -f2)" >> $GITHUB_ENV
2525
- name: Publish snapshot
26-
run: ./gradlew mode-s:uploadArchives --no-daemon --no-parallel
26+
run: ./gradlew uploadArchives --no-daemon --no-parallel
2727
if: endsWith(env.VERSION_NAME, '-SNAPSHOT')
2828
env:
2929
ORG_GRADLE_PROJECT_SONATYPE_NEXUS_USERNAME: ${{ secrets.SONATYPE_USERNAME }}

0 commit comments

Comments
 (0)