Merge pull request #32 from nathonius/ci/31/release-workflow

🤖 ci: #31 Add release workflow
This commit is contained in:
Nathan 2024-02-09 23:38:46 -05:00 committed by GitHub
commit eb71576927
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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