Skip to content

feat: 🎉 Initial Commit #17

feat: 🎉 Initial Commit

feat: 🎉 Initial Commit #17

Workflow file for this run

name: Release
on:
push:
branches: [ main ]
tags:
- "v*"
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
discussions: write
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build Changelog
id: changelog
uses: mikepenz/release-changelog-builder-action@v3
if: startsWith(github.ref, 'refs/tags/')
with:
configuration: ".github/configuration.json"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
# tag_name: ${{ env.release_tag }}
body: ${{steps.changelog.outputs.changelog}}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}