Skip to content

Commit

Permalink
Merge pull request #7328 from cli/deployment-init
Browse files Browse the repository at this point in the history
Initialize deployment.yml workflow file
  • Loading branch information
mislav committed Apr 19, 2023
2 parents 4b5a903 + 57a5997 commit 8460a70
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
@@ -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 }}

0 comments on commit 8460a70

Please sign in to comment.