Skip to content

Commit

Permalink
feat(core): add upload to github
Browse files Browse the repository at this point in the history
  • Loading branch information
Vacxe committed Jul 24, 2024
1 parent 857761f commit f5775d0
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/release-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,22 @@ jobs:
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
GPG_KEY_ID: ${{ secrets.GPG_KEY_ID }}

deploy-github:
name: Deploy to GitHub
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
distribution: "temurin"
java-version: 8
cache: gradle
- uses: little-core-labs/[email protected]
- name: Deploy to GitHub
run: ./gradlew :publishMavenPublicationToGithubRepository -PreleaseMode=RELEASE --stacktrace
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
GPG_KEY_ID: ${{ secrets.GPG_KEY_ID }}

0 comments on commit f5775d0

Please sign in to comment.