Skip to content

Merge pull request #4540 from 2403905/release-2.19.1 #22

Merge pull request #4540 from 2403905/release-2.19.1

Merge pull request #4540 from 2403905/release-2.19.1 #22

Workflow file for this run

name: Release
on:
push:
tags:
- "*"
jobs:
release:
runs-on: self-hosted
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Go environment
uses: actions/[email protected]
with:
go-version-file: go.mod
- name: Make distribution
run: make dist VERSION=${{ github.ref_name }} GIT_COMMIT=${{ github.sha }} GO_VERSION=$(go version | awk '{print $3}')
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: "dist/*"
body_path: "changelog/NOTE.md"