Skip to content

Commit

Permalink
ci: add missing release action
Browse files Browse the repository at this point in the history
  • Loading branch information
thebuilder committed Jul 29, 2024
1 parent 52296e8 commit 0183c78
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Release

permissions:
contents: write

on:
push:
tags:
- 'v*'

jobs:
release:
runs-on: ubuntu-latest
steps:
- run: corepack enable
- uses: actions/checkout@v4
with:
fetch-depth: '0' # Avoid shallow clone
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: 'pnpm'

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

0 comments on commit 0183c78

Please sign in to comment.