This repository has been archived by the owner on Oct 17, 2023. It is now read-only.
Update dependency com.android.tools.build:gradle to v8 - abandoned #112
This file contains 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: build | |
on: | |
pull_request: {} | |
push: | |
branches: | |
- '*' | |
tags-ignore: | |
- '*' | |
env: | |
GRADLE_OPTS: "-Dorg.gradle.jvmargs=-Xmx4g -Dorg.gradle.daemon=false -Dkotlin.incremental=false" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: 8 | |
- run: ./gradlew build | |
- run: ./gradlew uploadArchives | |
if: ${{ github.ref == 'refs/heads/trunk' && github.repository == 'cashapp/InflationInject' }} | |
env: | |
ORG_GRADLE_PROJECT_SONATYPE_NEXUS_USERNAME: ${{ secrets.SONATYPE_NEXUS_USERNAME }} | |
ORG_GRADLE_PROJECT_SONATYPE_NEXUS_PASSWORD: ${{ secrets.SONATYPE_NEXUS_PASSWORD }} | |
- name: Deploy docs to website | |
if: ${{ github.ref == 'refs/heads/trunk' && github.repository == 'cashapp/InflationInject' }} | |
uses: JamesIves/github-pages-deploy-action@releases/v3 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
BRANCH: site | |
FOLDER: inflation-inject/build/docs/javadoc | |
TARGET_FOLDER: latest/ | |
CLEAN: true |