all repos

mugit @ 0c6e821b28a02ebf2449b86e66232508f5d302aa

🐮 git server that your cow will love

mugit/.github/workflows/goreleaser.yml (view raw)

Oleksandr Smirnov Oleksandr Smirnov
olexsmir@gmail.com
chore: setup goreleaser, 4 months ago
1
name: goreleaser
2
3
on:
4
  push:
5
    tags:
6
      - "*"
7
8
permissions:
9
  contents: write
10
11
12
jobs:
13
  goreleaser:
14
    runs-on: ubuntu-latest
15
    steps:
16
      - uses: actions/checkout@v5
17
        with:
18
          fetch-depth: 0
19
20
      - name: Set up Go
21
        uses: actions/setup-go@v5
22
23
      - name: Run GoReleaser
24
        uses: goreleaser/goreleaser-action@v6
25
        with:
26
          distribution: goreleaser
27
          version: '~> v2'
28
          args: release --clean
29
        env:
30
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}