Skip to content

Commit

Permalink
Merge pull request #14 from daichirata/feature/github-actions
Browse files Browse the repository at this point in the history
Add goreleaser and github actions configuration
  • Loading branch information
daichirata authored Aug 25, 2022
2 parents 0a8a4f3 + 6be6674 commit 732200c
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Release
on:
push:
tags:
- v*
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Go 1.18
uses: actions/setup-go@v2
with:
go-version: 1.18.x
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
46 changes: 46 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
before:
hooks:
- go mod download
builds:
- main: .
binary: gcsproxy
env:
- CGO_ENABLED=0
goos:
- darwin
- linux
- windows
goarch:
- amd64
- arm64
- arm
- 386
ignore:
- goos: darwin
goarch: 386

archives:
- format: tar.gz
wrap_in_directory: true
format_overrides:
- goos: windows
format: zip
name_template: '{{ .ProjectName }}-{{ .Version }}-{{ .Os }}-{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
files:
- LICENSE
- README.md

checksum:
name_template: 'checksums.txt'

snapshot:
name_template: "SNAPSHOT-{{ .Tag }}"

changelog:
sort: asc
filters:
exclude:
- '^test:'
- 'README'
- Merge pull request
- Merge branch

0 comments on commit 732200c

Please sign in to comment.