🤖 ci: #31 Add release workflow

Drafts a new release when a tag is pushed

Closes: #31
This commit is contained in:
Nathan Smith 2024-02-10 04:38:13 +00:00
parent fa007a741f
commit 004f507a42

27
.github/workflows/release.yml vendored Normal file
View file

@ -0,0 +1,27 @@
name: Draft Release
on:
push:
tags:
- "*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "20.x"
- name: Build
run: |
npm install
npm run build
- name: Create Draft
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
run: |
tag="${GITHUB_REF#refs/tags/}"
gh release create "$tag" \
--title="Release v$tag" \
--draft \
main.js manifest.json styles.css