From 5848377c1b8c4723e15fc230553d348c417de702 Mon Sep 17 00:00:00 2001 From: Aditya Joshi Date: Sun, 23 Apr 2023 11:49:35 +0000 Subject: [PATCH] goreleaser github action added Signed-off-by: Aditya Joshi --- .github/workflows/release.yaml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 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..2825aaa --- /dev/null +++ b/.github/workflows/release.yaml @@ -0,0 +1,33 @@ +name: Release ipfs-key binaries + +on: + workflow_dispatch: + push: + tags: + - "*" + +jobs: + goreleaser: + permissions: + id-token: write # To sign. + contents: write # To upload release assets. + actions: read # To read workflow path. + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + with: + fetch-depth: 0 + - name: Set up Go + uses: actions/setup-go@v3 + with: + go-version: 1.17 + + - name: Run GoReleaser + uses: goreleaser/goreleaser-action@v3 + with: + version: latest + args: release --clean + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} +