Skip to content

Commit

Permalink
feat: setup release action for s3khoj
Browse files Browse the repository at this point in the history
  • Loading branch information
ajutamangdev committed Sep 12, 2024
1 parent 5c802e0 commit df13576
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/release_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Release S3Khoj

on:
push:
tags:
- 'v*.*.*'

permissions:
contents: write

jobs:

release:
runs-on: ubuntu-latest
steps:

- name: checkout
uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.22.5

- name: run GoReleaser
uses: goreleaser/goreleaser-action@v4
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.S3Khoj_GITHUB_TOKEN }}

0 comments on commit df13576

Please sign in to comment.