Skip to content
This repository has been archived by the owner on Nov 30, 2024. It is now read-only.

chore(0.1): create release commit v0.1.0 #4

chore(0.1): create release commit v0.1.0

chore(0.1): create release commit v0.1.0 #4

Workflow file for this run

name: changelog
on:
push:
tags:
- v*
permissions: write-all
jobs:
deploy:
name: Generate changelog and publish a release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: requarks/changelog-action@v1
id: changelog
with:
token: ${{ github.token }}
tag: ${{ github.ref_name }}
- uses: ncipollo/[email protected]
with:
allowUpdates: true
draft: false
makeLatest: true
name: ${{ github.ref_name }}
body: ${{ steps.changelog.outputs.changes }}
token: ${{ github.token }}