diff --git a/.github/workflows/publish_release.yml b/.github/workflows/publish_release.yml new file mode 100644 index 0000000..152279f --- /dev/null +++ b/.github/workflows/publish_release.yml @@ -0,0 +1,18 @@ +name: Publish Release + +on: + push: + tags: + - v*.*.* + +permissions: + contents: write + pull-requests: read + +jobs: + build: + uses: axonivy-market/github-workflows/.github/workflows/publish-release.yml@v4 + # The 'publish_release' input parameter is used to control whether the release should be published automatically. + # Uncomment and set to 'false' if you want to prevent the release from being published immediately. + # with: + # publish_release: false diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml index e0a01a1..99bf697 100644 --- a/.github/workflows/release-drafter.yml +++ b/.github/workflows/release-drafter.yml @@ -6,16 +6,6 @@ on: - master pull_request: types: [opened, reopened, synchronize] - workflow_dispatch: - inputs: - version: - description: 'Release version' - required: true - prerelease: - description: 'Is this a prerelease?' - required: false - default: false - type: boolean permissions: contents: write @@ -24,6 +14,3 @@ permissions: jobs: build: uses: axonivy-market/github-workflows/.github/workflows/release-drafter.yml@v4 - with: - version: ${{ github.event.inputs.version }} - prerelease: ${{ github.event.inputs.prerelease }} \ No newline at end of file