Skip to content

Commit

Permalink
chore: add github changelog ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Blackman99 committed Jul 11, 2023
1 parent 61c8ae3 commit 4919dd1
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/github-changelog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Release

permissions:
contents: write

on:
push:
tags:
- 'v*'

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: recursive

- uses: actions/setup-node@v3
with:
node-version: "18.16.1"

- run: npx changelogithub
env:
GITHUB_TOKEN: ${{secrets.G_TOKEN}}

0 comments on commit 4919dd1

Please sign in to comment.