Skip to content

Commit

Permalink
- fix typo, write out properties properly
Browse files Browse the repository at this point in the history
  • Loading branch information
mikepenz committed Oct 4, 2020
1 parent 163450d commit 3bcef7f
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,19 +72,23 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
run: ./gradlew app:assembleRelease app:bundleRelease

- name: Prepare Gradle Publish properties
if: startsWith(github.ref, 'refs/tags/')
run: |
echo "NEXUS_USERNAME=${{ secrets.NEXUS_USERNAME }}" >> ~/.gradle/gradle.properties
echo "NEXUS_PASSWORD=${{ secrets.NEXUS_PASSWORD }}" >> ~/.gradle/gradle.properties
- name: Relase bintray
if: startsWith(github.ref, 'refs/tags/')
run: |
./gradlew build -x test -x lint
./gradlew library:bintrayUpload -x test -x lint -Plibrary_only --no-configure-on-demand --no-parallel
./gradlew library-nav:bintrayUpload -x test -x lint -Plibrary_nav_only --no-configure-on-demand --no-parallel
./gradlew library-iconics:bintrayUpload -x test -x lint -Plibrary_iconics_onlyv --no-configure-on-demand --no-parallel
./gradlew library-iconics:bintrayUpload -x test -x lint -Plibrary_iconics_only --no-configure-on-demand --no-parallel
env:
BINTRAY_USER: ${{ secrets.BINTRAY_USER }}
BINTRAY_API_KEY: ${{ secrets.BINTRAY_API_KEY }}
BINTRAY_GPG_PASS: ${{ secrets.BINTRAY_GPG_PASS }}
NEXUS_USERNAME: ${{ secrets.NEXUS_USERNAME }}
NEXUS_PASSWORD: ${{ secrets.NEXUS_PASSWORD }}

- name: Collect artifacts
run: |
Expand Down

0 comments on commit 3bcef7f

Please sign in to comment.