Skip to content

Use common aggregate data in circular-import (#2019) #72

Use common aggregate data in circular-import (#2019)

Use common aggregate data in circular-import (#2019) #72

Workflow file for this run

name: Push Tags
on:
push:
tags:
- v[0-9].**
permissions:
contents: read
jobs:
goreleaser:
name: GoReleaser
runs-on: ubuntu-22.04
permissions:
# this is needed to create a release
contents: write
# this is needed to create artifacts in ghcr
packages: write
steps:
- name: Check out code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version-file: go.mod
check-latest: true
- name: Install GoReleaser
uses: goreleaser/goreleaser-action@5daf1e915a5f0af01ddbcd89a43b8061ff4f1a89 # v7.2.2
with:
install-only: true
- name: Run GoReleaser
run: goreleaser release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}