adding mechanism to rebuild freebsd artifacts manually.

This commit is contained in:
Jason Kulatunga
2022-05-09 18:38:46 -07:00
parent bce6225e9a
commit 3150201348
+7 -1
View File
@@ -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: