Skip to content

Commit

Permalink
Release workflow (#28)
Browse files Browse the repository at this point in the history
* Add release workflow

* New labels
  • Loading branch information
jeevithakannan2 authored Jan 21, 2025
1 parent 56784db commit 34b2d8a
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
changelog:
categories:
- title: "πŸš€ Features"
labels:
- "enhancement"
- title: "πŸ› Bug Fixes"
labels:
- "bug"
- title: "βš™οΈ Refactoring"
labels:
- "refactor"
- title: "πŸ“š Documentation"
labels:
- "documentation"
- title: "πŸ”’ Security"
labels:
- "security"
- title: "Other Changes"
labels:
- "*"
exclude:
labels:
- "skip-changelog"
22 changes: 22 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Release

on:
workflow_dispatch:
push:
tags:
- "v*.*.*"

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Release
uses: softprops/action-gh-release@v2
with:
append_body: true
generate_release_notes: true
draft: true
files: |
./install.sh

0 comments on commit 34b2d8a

Please sign in to comment.