From db60ab01879ee798d95d2e6ba29f54914023ee64 Mon Sep 17 00:00:00 2001 From: Simon Let Date: Sun, 15 Dec 2019 19:05:27 +0100 Subject: [PATCH] add github actions --- .github/workflows/release.yaml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/release.yaml diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml new file mode 100644 index 0000000..82a0f1b --- /dev/null +++ b/.github/workflows/release.yaml @@ -0,0 +1,24 @@ +name: goreleaser + +on: + pull_request: + push: + +jobs: + goreleaser: + runs-on: ubuntu-latest + steps: + - + name: Checkout + uses: actions/checkout@v1 + - + name: Set up Go + uses: actions/setup-go@v1 + - + name: Run GoReleaser + uses: goreleaser/goreleaser-action@v1 + with: + version: latest + args: release + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file