Skip to content

Auto Build on GitHub #8

Auto Build on GitHub

Auto Build on GitHub #8

Workflow file for this run

name: 'Tag Release'
on:
push:
branches:
- main
- 'release-*'
paths:
- version.go
jobs:
tag-release:
runs-on: ubuntu-20.04
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: /usr/bin/git config --global user.email [email protected]
- run: /usr/bin/git config --global user.name 'GitHub Actions Release Tagger'
- env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: hack/tag-release.sh