cli/.github/workflows/deployment.yml
2023-04-17 20:00:04 +02:00

25 lines
439 B
YAML

name: Deployment
permissions:
contents: read
on:
workflow_dispatch:
inputs:
tag_name:
required: true
type: string
go_version:
default: "1.19"
type: string
jobs:
linux:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ inputs.go_version }}