Merge pull request #243 from usefulness/renovate/gradle.starter #439
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 project | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
- main | |
- trunk | |
- develop | |
- maine | |
- mane | |
schedule: | |
- cron: '0 3 * * 1,4' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 21 | |
- uses: gradle/actions/setup-gradle@v4 | |
- uses: gradle/actions/wrapper-validation@v4 | |
- run: ./gradlew projectCodestyle | |
- run: ./gradlew assembleRelease check --scan | |
- run: ./gradlew projectCoverage | |
- run: ./gradlew publishToMavenLocal | |
- run: git diff --exit-code | |
- uses: actions/upload-artifact@v4 | |
if: ${{ always() }} | |
with: | |
name: lint-results | |
path: '${{ github.workspace }}/**/build/**/reports/lint-results-*.html' | |
- name: Unwrap GPG key | |
if: github.repository == 'usefulness/lazythreetenbp' && github.event_name != 'pull_request' | |
env: | |
GPG_KEY_CONTENTS: ${{ secrets.GPG_KEY_CONTENTS }} | |
SIGNING_SECRET_KEY_RING_FILE: ${{ secrets.SIGNING_SECRET_KEY_RING_FILE }} | |
run: sudo bash -c "echo '$GPG_KEY_CONTENTS' | base64 -d > '$SIGNING_SECRET_KEY_RING_FILE'" | |
- name: Publish | |
if: github.repository == 'usefulness/lazythreetenbp' && github.event_name == 'push' && github.ref == 'refs/heads/master' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }} | |
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }} | |
SIGNING_KEY_ID: ${{ secrets.SIGNING_KEY_ID }} | |
SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }} | |
SIGNING_SECRET_KEY_RING_FILE: ${{ secrets.SIGNING_SECRET_KEY_RING_FILE }} | |
run: ./gradlew publishReleasePublicationToGithubRepository | true | |
- uses: actions/cache@v4 | |
if: github.event_name != 'pull_request' | |
name: Upload base (release) | |
with: | |
path: diffuse-source-file-release | |
key: diffuse-${{ github.sha }}-${{ hashFiles('**/aar/**.aar') }} | |
- run: cp lazythreetenbp/build/outputs/aar/lazythreetenbp-release.aar diffuse-source-file-release | |
if: github.event_name != 'pull_request' | |
shell: bash |