Skip to content

Commit

Permalink
feat: add publish release workflow
Browse files Browse the repository at this point in the history
Signed-off-by: amands98 <amandeepsm.in@gmail.com>
  • Loading branch information
amands98 committed Jan 31, 2024
1 parent 378fd36 commit ef43a90
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/publish_release.yml
@@ -0,0 +1,26 @@
name: Publish Release

on:
push:
tags:
- v*

jobs:
build:
runs-on: ubuntu-20.04
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Setup go env
uses: actions/setup-go@master
with:
go-version: "1.20"
- name: goreleaser with tag
uses: goreleaser/goreleaser-action@v5
with:
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}


0 comments on commit ef43a90

Please sign in to comment.