Skip to content

chore: merge origin/development into main #1

chore: merge origin/development into main

chore: merge origin/development into main #1

Workflow file for this run

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 }}