Skip to content

Commit

Permalink
add bintray upload in github ci
Browse files Browse the repository at this point in the history
  • Loading branch information
gciatto committed Oct 24, 2020
1 parent a135926 commit 64294f4
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,13 @@ jobs:
- name: Publish on GitHub Maven Repo
run: gradle ${{ env.gradle-options }} publishAllPublicationsToMavenRepository --parallel
env:
ORG_GRADLE_PROJECT_sonatypeUrl: https://maven.pkg.github.com/tuProlog
ORG_GRADLE_PROJECT_sonatypeUrl: https://maven.pkg.github.com/$${{ github.repository }}
ORG_GRADLE_PROJECT_ossrhUsername: ${{ github.actor }}
ORG_GRADLE_PROJECT_ossrhPassword: ${{ secrets.GITHUB_TOKEN }}

- name: Publish on Bintray Maven Repo
run: gradle ${{ env.gradle-options }} publishAllToBintray --parallel
env:
ORG_GRADLE_PROJECT_sonatypeUrl: https://maven.pkg.github.com/$${{ github.repository }}
ORG_GRADLE_PROJECT_bintrayUser: ${{ secrets.BINTRAY_USER }}
ORG_GRADLE_PROJECT_bintrayKey: ${{ secrets.BINTRAY_USER }}

0 comments on commit 64294f4

Please sign in to comment.