Update Kotlin to 2.0.21 and AGP to 8.13.0 (#372) #24
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: Deploy snapshot | |
| on: | |
| # Trigger ONLY on push to master branch | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| build-test: | |
| uses: airbnb/DeepLinkDispatch/.github/workflows/build_test.yml@master | |
| deploy-snapshot: | |
| needs: build-test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout DeepLinkDispatch | |
| uses: actions/checkout@v2 | |
| - name: Update gradle.properties | |
| uses: DamianReeves/write-file-action@master | |
| with: | |
| path: gradle.properties | |
| write-mode: append | |
| contents: | | |
| mavenCentralUsername=${{ secrets.NEXUS_USER }} | |
| mavenCentralPassword=${{ secrets.NEXUS_PASSWORD }} | |
| - name: Deploy new snapshot of DeepLinkDispatch | |
| shell: bash | |
| run: ./gradlew -PenforceSnapshotVersion=true publishAllPublicationsToMavenCentral |