Skip to content

Commit

Permalink
ci: add release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
0x-jerry committed Feb 13, 2024
1 parent d05b0d4 commit 86ac61a
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 25 deletions.
1 change: 0 additions & 1 deletion .eslintignore

This file was deleted.

17 changes: 0 additions & 17 deletions .eslintrc.json

This file was deleted.

23 changes: 23 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Release

on:
push:
tags:
- 'v*'

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

- uses: actions/setup-node@v4
with:
node-version: 20

- name: Release
run: npx changelogithub
env:
GITHUB_TOKEN: ${{github.token}}
7 changes: 0 additions & 7 deletions tsconfig.build.json

This file was deleted.

0 comments on commit 86ac61a

Please sign in to comment.