Skip to content

fix(tags): the entitylist for tags was missing acl-groups (#89) #34

fix(tags): the entitylist for tags was missing acl-groups (#89)

fix(tags): the entitylist for tags was missing acl-groups (#89) #34

Workflow file for this run

name: release
on:
push:
tags:
- "v*.*"
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Configure git to use a PAT when cloning
run: |
git config --global url."https://api:${{ secrets.PAT }}@github.com/".insteadOf "https://github.com/"
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}