all repos

json2go @ main

convert json to go type annotations

json2go/.github/workflows/release.yml (view raw)

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