-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
try publish to sonatype snapshot repository
- Loading branch information
Showing
5 changed files
with
39 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,38 +29,10 @@ jobs: | |
- name: Build Package | ||
uses: gradle/gradle-build-action@v2 | ||
with: | ||
arguments: :overflow-core-all:shadowJar publishMavenReleasePublicationToGithubRepository | ||
env: | ||
ORG_GRADLE_PROJECT_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
ORG_GRADLE_PROJECT_VERSION_OVERRIDE: ${{ env.SHORT_SHA }} | ||
arguments: :overflow-core-all:shadowJar | ||
- name: Upload Artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: overflow-core-all-${{ env.SHORT_SHA }} | ||
path: overflow-core-all/build/libs/*-all.jar | ||
if-no-files-found: error | ||
|
||
- name: Delete Old overflow-core-api | ||
uses: actions/[email protected] | ||
with: | ||
package-name: 'top.mrxiaom.overflow-core-api' | ||
package-type: 'maven' | ||
min-versions-to-keep: 30 | ||
- name: Delete Old onebot | ||
uses: actions/[email protected] | ||
with: | ||
package-name: 'top.mrxiaom.onebot' | ||
package-type: 'maven' | ||
min-versions-to-keep: 30 | ||
- name: Delete Old overflow-core | ||
uses: actions/[email protected] | ||
with: | ||
package-name: 'top.mrxiaom.overflow-core' | ||
package-type: 'maven' | ||
min-versions-to-keep: 30 | ||
- name: Delete Old overflow-core-all | ||
uses: actions/[email protected] | ||
with: | ||
package-name: 'top.mrxiaom.overflow-core-all' | ||
package-type: 'maven' | ||
min-versions-to-keep: 30 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Publish Snapshots | ||
on: | ||
push: | ||
branches: [ "main" ] | ||
paths-ignore: | ||
- '*.md' | ||
permissions: | ||
contents: write | ||
jobs: | ||
build: | ||
permissions: | ||
contents: write | ||
packages: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Setup Java 8 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: temurin | ||
java-version: 8 | ||
- name: Get short SHA | ||
run: echo "SHORT_SHA=${GITHUB_SHA::7}" >> $GITHUB_ENV | ||
- name: Publish Package | ||
uses: gradle/gradle-build-action@v2 | ||
with: | ||
arguments: publishMavenPublicationToSonatypeRepository closeAndReleaseSonatypeStagingRepository | ||
env: | ||
ORG_GRADLE_PROJECT_signingKey: ${{ secrets.SIGNING_PRIVATE_KEY }} | ||
ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.SIGNING_PASSWORD }} | ||
ORG_GRADLE_PROJECT_MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }} | ||
ORG_GRADLE_PROJECT_MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }} | ||
# 加上 VERSION_OVERRIDE 将会设为 -SNAPSHOT 版本 | ||
ORG_GRADLE_PROJECT_VERSION_OVERRIDE: ${{ env.SHORT_SHA }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters