From 499573d8f08ac0d9a41127ec2f80c86d83ed30d1 Mon Sep 17 00:00:00 2001 From: Jean-Marc MEESSEN Date: Thu, 23 Jul 2020 13:23:35 +0200 Subject: [PATCH] Reactivate the release action --- .github/workflows/release.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..c5961dd --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,22 @@ +name: Release with goreleaser +on: + push: + tags: + - v*.*.* +jobs: + build: + runs-on: ubuntu-latest + name: goreleaser + steps: + - uses: actions/checkout@v2 + - name: Unshallow Fetch + run: git fetch --prune --unshallow + - uses: actions/setup-go@v2 + with: + go-version: '^1.14.3' + - name: Release via goreleaser + uses: goreleaser/goreleaser-action@master + with: + args: release + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file