Concrete mixer can do multiple things before going back to the hut #459
Workflow file for this run
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 and Pre-release | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- labeled | |
- unlabeled | |
workflow_dispatch: | |
permissions: | |
contents: read | |
statuses: write | |
packages: write | |
jobs: | |
build: | |
uses: ldtteam/operapublicacreator/.github/workflows/gradle.build.yaml@main | |
with: | |
java: 17 | |
secrets: inherit | |
pre-release: | |
uses: ldtteam/operapublicacreator/.github/workflows/gradle.prerelease.yaml@main | |
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository && contains( github.event.pull_request.labels.*.name, 'Pre-release') | |
with: | |
java: 17 | |
secrets: inherit |