Initialize deployment.yml workflow file
This commit is contained in:
parent
dbc2f05124
commit
57a5997e36
1 changed files with 25 additions and 0 deletions
25
.github/workflows/deployment.yml
vendored
Normal file
25
.github/workflows/deployment.yml
vendored
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
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 }}
|
||||
Loading…
Add table
Add a link
Reference in a new issue