diff --git a/.github/workflows/container_release_foundationdb.yml b/.github/workflows/container_release_foundationdb.yml index ff6a28fa5..b27783fc5 100644 --- a/.github/workflows/container_release_foundationdb.yml +++ b/.github/workflows/container_release_foundationdb.yml @@ -4,11 +4,19 @@ on: push: tags: - '*' - workflow_dispatch: {} + workflow_dispatch: + inputs: + release_tag: + description: 'Release tag to publish (e.g. 3.93)' + required: true + default: '' permissions: contents: read +env: + RELEASE_TAG: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.release_tag || github.ref_name }} + jobs: build-large-release-container_foundationdb: @@ -26,7 +34,7 @@ jobs: images: | chrislusf/seaweedfs tags: | - type=ref,event=tag,suffix=_large_disk_foundationdb + type=raw,value=${{ env.RELEASE_TAG }}_large_disk_foundationdb flavor: | latest=false labels: |