From 315020134802719e44c519e0297cdec57e60aa83 Mon Sep 17 00:00:00 2001 From: Jason Kulatunga Date: Mon, 9 May 2022 18:38:46 -0700 Subject: [PATCH] adding mechanism to rebuild freebsd artifacts manually. --- .github/workflows/release-freebsd.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-freebsd.yaml b/.github/workflows/release-freebsd.yaml index 6cb27a5..9f2f753 100644 --- a/.github/workflows/release-freebsd.yaml +++ b/.github/workflows/release-freebsd.yaml @@ -5,6 +5,12 @@ on: release: # Only use the types keyword to narrow down the activity types that will trigger your workflow. types: [published] + workflow_dispatch: + inputs: + tag_name: + description: 'tag to build artifacts for' + required: true + default: 'v0.0.0' jobs: release-freebsd: @@ -19,7 +25,7 @@ jobs: - name: Checkout uses: actions/checkout@v2 with: - ref: ${{github.event.release.tag_name}} + ref: ${{github.event.release.tag_name || github.event.inputs.tag_name }} - name: Build Binaries uses: vmactions/freebsd-vm@v0.1.5 with: