Skip to content

Commit

Permalink
Merge pull request #106 from thefuntasty/feature/3-x-github-actions
Browse files Browse the repository at this point in the history
Fix: fixed publish to bintray and gradle plugin portal
  • Loading branch information
Ondřej Kalman authored Jan 9, 2020
2 parents 29c5f9f + 1617f34 commit 1ab0bed
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,6 @@ jobs:
runs-on: [ubuntu-latest]
env:
EXCLUDE_APK_FILTER: .*unaligned.apk\|.*Test.*.apk
GRADLE_PUBLISH_KEY: ${{secrets.GRADLE_PUBLISH_KEY}}
GRADLE_PUBLISH_SECRET: ${{secrets.GRADLE_PUBLISH_SECRET}}
BINTRAY_USER: ${{secrets.BINTRAY_USER}}
BINTRAY_KEY: ${{secrets.BINTRAY_KEY}}
BINTRAY_GPG_KEY: ${{secrets.BINTRAY_GPG_KEY}}
BITRISE_GIT_TAG: ${{github.event.release.name}}
steps:
- uses: actions/checkout@v1
Expand All @@ -29,6 +24,6 @@ jobs:
shell: bash
run: ./gradlew --continue testRelease
- name: Upload to Bintray
run: ./gradlew build publish bintrayUpload
run: ./gradlew build publish bintrayUpload --stacktrace --no-daemon -PBINTRAY_USER=${{secrets.BINTRAY_USER}} -PBINTRAY_KEY=${{secrets.BINTRAY_KEY}} -PBINTRAY_GPG_KEY=${{secrets.BINTRAY_GPG_KEY}}
- name: Publish plugins
run: ./gradlew publishPlugins
run: ./gradlew publishPlugins -Pgradle.publish.key=${{secrets.GRADLE_PUBLISH_KEY}} -Pgradle.publish.secret=${{secrets.GRADLE_PUBLISH_SECRET}}

0 comments on commit 1ab0bed

Please sign in to comment.