chore: merge origin/development into main #1
Workflow file for this run
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: Release | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| tag: | |
| description: 'Tag to build and publish; empty takes the ref the run was started from' | |
| required: false | |
| type: string | |
| default: '' | |
| push: | |
| tags: | |
| - '*' | |
| permissions: | |
| contents: write | |
| packages: write | |
| jobs: | |
| publish: | |
| uses: intisy/workflows/.github/workflows/publish.yml@main | |
| with: | |
| tag: ${{ inputs.tag }} | |
| # maven is not detectable here: the maven-publish plugin arrives through a remote preset | |
| # fetched at build time, so nothing in the checked-in build script names it. | |
| targets: 'github-gradle maven' | |
| jdk_distribution: none | |
| publish_task: publishGithub | |
| secrets: | |
| envPAT: ${{ secrets.PAT }} |