Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/ant.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@ on:
default: ''
required: false
description: "A variable used for developing the GitHub Action. See actions/checkout@v4."
release:
type: boolean
default: true
required: false
description: "Perform the release creation if a tag is pushed"
outputs:
tag:
description: "The release tag"
Expand Down Expand Up @@ -274,7 +279,7 @@ jobs:
release:
runs-on: ${{ inputs.operating-system }}
needs: [create_tag, plugin-build, plugin-test, josm-build]
if: ${{ startsWith(github.ref, 'refs/tags/') || inputs.perform-revision-tagging }}
if: ${{ (startsWith(github.ref, 'refs/tags/') && inputs.release) || inputs.perform-revision-tagging }}
steps:
- name: Get build
id: cache-plugin-build
Expand Down