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

chore(0.1): create release commit v0.1.1 #3

chore(0.1): create release commit v0.1.1

chore(0.1): create release commit v0.1.1 #3

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/release-action@v1.13.0
with:
allowUpdates: true
draft: false
makeLatest: true
name: ${{ github.ref_name }}
body: ${{ steps.changelog.outputs.changes }}
token: ${{ github.token }}