Skip to content

v0.0.11

v0.0.11 #3

Workflow file for this run

name: Release
on:
push:
tags:
- '*'
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.node-version'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Create release package
run: npm run package
- name: Create Release
run: |
gh release create ${{github.ref_name}} \
--generate-notes \
./build/develop-${{github.ref_name}}.zip
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}