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 }}