Skip to content

Bump up go and golangci-lint version (#52) #26

Bump up go and golangci-lint version (#52)

Bump up go and golangci-lint version (#52) #26

Workflow file for this run

name: Release
on:
push:
branches:
- main
- release-*
paths:
- 'VERSION'
jobs:
release:
runs-on: [ubuntu-latest]
steps:
- name: Check-out code
uses: actions/checkout@v3
- name: Read version
run: |
echo "version=$(head VERSION)" >> $GITHUB_ENV
- name: Create release
uses: ncipollo/release-action@v1
with:
omitBody: true
token: "${{ secrets.GITHUB_TOKEN }}"
tag: "${{ env.version }}"
commit: "${{ env.GITHUB_SHA }}"