goreleaser github action added

Signed-off-by: Aditya Joshi <adityaprakashjoshi1@gmail.com>
This commit is contained in:
Aditya Joshi 2023-04-23 11:49:35 +00:00
parent a083da5efd
commit 5848377c1b

33
.github/workflows/release.yaml vendored Normal file
View File

@ -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 }}