Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
k1LoW committed May 12, 2023
1 parent cef87ad commit 6e95a14
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
- name: Check out source code
uses: actions/checkout@v3

- name: Set up Go ${{ matrix.go_version }}
uses: actions/setup-go@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod

Expand Down
18 changes: 12 additions & 6 deletions .github/workflows/tagpr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ jobs:
- name: Check out source code
uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod

- id: run-tagpr
name: Run tagpr
uses: Songmu/tagpr@v1
Expand All @@ -31,12 +36,13 @@ jobs:
with:
fetch-depth: 0

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod

- name: Setup
run: |
brew uninstall [email protected]
brew install go
brew install goreleaser
run: brew install goreleaser

- name: Release
run: |
make release
run: make release

0 comments on commit 6e95a14

Please sign in to comment.