DEV-199: fix GitHub Packages publishing by setting github property in… #361
Workflow file for this run
This file contains hidden or 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
| name: Android SDK PR checks | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| paths-ignore: | |
| - .github | |
| - .husky | |
| - .run | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| Check: | |
| if: github.event.pull_request.draft == false | |
| uses: rees46/workflow/.github/workflows/reusable-android-checks.yaml@master | |
| permissions: write-all | |
| with: | |
| PROPERTIES_FILE: gradle.properties | |
| SIGNING_SECRET_KEY_RING_FILE: com.rees46.key.gpg | |
| SIGNING_SECRET_KEY_RING_FILE_LOCATION: ./personalization-sdk | |
| GOOGLE_SERVICES_FILE_LOCATION: ./sample | |
| GOOGLE_SERVICES_FILE_NAME: google-services.json | |
| OSSRH_USERNAME: ${{ vars.OSSRH_USERNAME }} | |
| VARIANT_NAME: ${{ vars.REES_VARIANT_NAME }} | |
| URL: https://github.com/PersonaClick/android-sdk | |
| MAVEN_REPOSITORY_URL: https://maven.pkg.github.com/PersonaClick/android-sdk | |
| secrets: | |
| SONATA_USERNAME: ${{ secrets.SONATA_USERNAME }} | |
| SONATA_PASSWORD: ${{ secrets.SONATA_PASSWORD }} | |
| OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }} | |
| SIGNING_KEY_ID: ${{ secrets.SIGNING_KEY_ID }} | |
| SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }} | |
| SONATYPE_REES46: ${{ secrets.SONATYPE_REES46 }} | |
| SONATYPE_PERSONACLICK: ${{ secrets.SONATYPE_PERSONACLICK }} | |
| SIGNING_KEY_FILE_AS_BASE64_STRING: ${{ secrets.SIGNING_KEY_FILE_AS_BASE64_STRING }} | |
| GOOGLE_SERVICES_FILE_AS_BASE64_STRING: ${{ secrets.GOOGLE_SERVICES_FILE_AS_BASE64_STRING }} |