ci: Add workflow

This commit is contained in:
Elian Doran 2024-09-11 21:44:31 +03:00
parent 8e7b8e6d1c
commit 8864488eac
No known key found for this signature in database

16
.github/workflows/release.yml vendored Normal file
View File

@ -0,0 +1,16 @@
name: Release
on:
push:
jobs:
publish-github-registry:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up node & dependencies
uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"
- run: yarn install
- run: yarn build
- run: yarn publish