Skip to content

Commit

Permalink
Merge pull request #16 from cybozu-go/fix-release-flow
Browse files Browse the repository at this point in the history
Fix release flow
  • Loading branch information
zeroalphat committed Nov 14, 2023
2 parents c9b33f7 + 6cf23bb commit 45d5311
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,16 @@ name: Release
on:
push:
tags:
- 'v*'
- "v*"
jobs:
image:
name: Push Container Image
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version-file: "go.mod"
- uses: docker/setup-qemu-action@v3
with:
platforms: linux/amd64
Expand Down Expand Up @@ -38,7 +41,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
go-version-file: "go.mod"
- name: GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
Expand Down

0 comments on commit 45d5311

Please sign in to comment.