We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e468e43 commit c902765Copy full SHA for c902765
1 file changed
.github/workflows/ant.yml
@@ -56,6 +56,11 @@ on:
56
default: ''
57
required: false
58
description: "A variable used for developing the GitHub Action. See actions/checkout@v6."
59
+ release:
60
+ type: boolean
61
+ default: true
62
+ required: false
63
+ description: "Perform the release creation if a tag is pushed"
64
outputs:
65
tag:
66
description: "The release tag"
@@ -274,7 +279,7 @@ jobs:
274
279
release:
275
280
runs-on: ${{ inputs.operating-system }}
276
281
needs: [create_tag, plugin-build, plugin-test, josm-build]
277
- if: ${{ startsWith(github.ref, 'refs/tags/') || inputs.perform-revision-tagging }}
282
+ if: ${{ (startsWith(github.ref, 'refs/tags/') && inputs.release) || inputs.perform-revision-tagging }}
278
283
steps:
284
- name: Get build
285
id: cache-plugin-build
0 commit comments