Skip to content

Commit

Permalink
chore: use new release tooling
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruno Besson committed Feb 19, 2024
1 parent 93feb97 commit b5f8b6a
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 48 deletions.
34 changes: 34 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
changelog:
categories:
- title: 🚨 Breaking changes
labels:
- backwards-incompatible
- breaking
- title: ✨ New features and enhancements
labels:
- enhancement
- title: 🐞 Fixed bugs
labels:
- bug
- title: ⚠️ Deprecated
labels:
- deprecated
- title: ⛔ Removed
labels:
- removed
- title: 💬 Translations
labels:
- i18n
- title: 📚 Documentation
labels:
- doc
- title: 🏗 Chores
labels:
- chore
- dependency
- dependencies
- security
- dependabot
- title: Other changes
labels:
- '*'
48 changes: 0 additions & 48 deletions .github/workflows/changelog.yml

This file was deleted.

22 changes: 22 additions & 0 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Release

on:
push:
tags:
- 'v[1-9]+.[0-9]+.[0-9]+'

jobs:
create-release:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Create or update release
uses: softprops/action-gh-release@v1
with:
generate_release_notes: true
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit b5f8b6a

Please sign in to comment.