Skip to content

Commit

Permalink
Do releases with workflows (#80)
Browse files Browse the repository at this point in the history
Ditch travis.
  • Loading branch information
klauspost committed Jun 29, 2021
1 parent 4150c1c commit 30cc3e6
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 67 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: goreleaser

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
uses: actions/setup-go@v2
with:
go-version: 1.16
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
version: 0.162.0
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CGO_ENABLED: 0
67 changes: 0 additions & 67 deletions .travis.yml

This file was deleted.

0 comments on commit 30cc3e6

Please sign in to comment.