Skip to content

chore(gradle): gradle ci publish package #7

chore(gradle): gradle ci publish package

chore(gradle): gradle ci publish package #7

Workflow file for this run

name: gradle
on:
pull_request:
types: [ opened, reopened, synchronize ]
pull_request_target:
types: [ closed ]
jobs:
lint:
if: ${{ github.event.pull_request.merged != true }}
uses: heliannuuthus/integration-deploy/.github/workflows/call-gradle-lint.yml@master
build:
if: always()
needs: lint
uses: heliannuuthus/integration-deploy/.github/workflows/call-gradle-build.yml@master
publish:
if: ${{ always() && github.event.pull_request.merged == true }}
needs: build
permissions:
contents: read
packages: write
uses: heliannuuthus/integration-deploy/.github/workflows/call-gradle-publish.yml@master
with:
user: ${{ github.actor }}
secrets:
token: ${{ secrets.GITHUB_TOKEN }}