adding mechanism to rebuild freebsd artifacts manually.
This commit is contained in:
@@ -5,6 +5,12 @@ on:
|
|||||||
release:
|
release:
|
||||||
# Only use the types keyword to narrow down the activity types that will trigger your workflow.
|
# Only use the types keyword to narrow down the activity types that will trigger your workflow.
|
||||||
types: [published]
|
types: [published]
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
tag_name:
|
||||||
|
description: 'tag to build artifacts for'
|
||||||
|
required: true
|
||||||
|
default: 'v0.0.0'
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
release-freebsd:
|
release-freebsd:
|
||||||
@@ -19,7 +25,7 @@ jobs:
|
|||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
ref: ${{github.event.release.tag_name}}
|
ref: ${{github.event.release.tag_name || github.event.inputs.tag_name }}
|
||||||
- name: Build Binaries
|
- name: Build Binaries
|
||||||
uses: vmactions/freebsd-vm@v0.1.5
|
uses: vmactions/freebsd-vm@v0.1.5
|
||||||
with:
|
with:
|
||||||
|
|||||||
Reference in New Issue
Block a user