Skip to content

build(deps): bump actions/setup-go from 4.0.0 to 4.1.0 #67

build(deps): bump actions/setup-go from 4.0.0 to 4.1.0

build(deps): bump actions/setup-go from 4.0.0 to 4.1.0 #67

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@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe
with:
go-version: 1.18
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