Skip to content

release v0.0.5

release v0.0.5 #7

Workflow file for this run

# https://github.com/actions/create-release
# https://github.com/actions/upload-release-asset
name: Create release
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
- run: |
tag_name="${GITHUB_REF##*/}"
gh release create "$tag_name" ./bin/*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}