Skip to content

build(deps): bump goreleaser/goreleaser-action from 4.4.0 to 5.0.0 #77

build(deps): bump goreleaser/goreleaser-action from 4.4.0 to 5.0.0

build(deps): bump goreleaser/goreleaser-action from 4.4.0 to 5.0.0 #77

Workflow file for this run

---
name: Tag
on:
push:
branches: [main, release-*]
jobs:
tag:
name: Tag release commit
if: "${{ startsWith(github.event.head_commit.message, 'release: ') }}"
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe
with:
go-version: stable
cache: true
- name: Configure git
env:
AUTHOR_EMAIL: ${{ github.event.head_commit.author.email }}
AUTHOR_NAME: ${{ github.event.head_commit.author.name }}
run: |
git config --local user.email "${AUTHOR_EMAIL}"
git config --local user.name "${AUTHOR_NAME}"
- name: Tag commit
run: |
make build
build/linux/gotagger -push