Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/go-i18n.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Snyder <nickdsnyder@gmail.com>2020-09-29 03:01:16 +0300
committerGitHub <noreply@github.com>2020-09-29 03:01:16 +0300
commit9c75f7e1b6ebad44094b15a2b84986668c734d9c (patch)
tree148981d63c9c26ab596a698994b11f68e68f31a2
parente15e8dff0f800d8323406e3b465866f95ac98bbd (diff)
goreleaser workflow (#225)
-rw-r--r--.github/workflows/goreleaser.yml30
1 files changed, 30 insertions, 0 deletions
diff --git a/.github/workflows/goreleaser.yml b/.github/workflows/goreleaser.yml
new file mode 100644
index 0000000..8ee1b75
--- /dev/null
+++ b/.github/workflows/goreleaser.yml
@@ -0,0 +1,30 @@
+name: goreleaser
+
+on:
+ push:
+ tags:
+ - '*'
+
+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.15.2'
+ -
+ name: Release
+ uses: goreleaser/goreleaser-action@v2
+ with:
+ version: latest
+ args: release --rm-dist
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ \ No newline at end of file