Skip to content

v0.0.17

v0.0.17 #18

Workflow file for this run

name: Release Pipeline
on:
release:
types: [published, edited]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.release.tag_name }}
- run: npm install
- run: npm run build
- uses: JasonEtco/build-and-tag-action@v2
with:
setup: ''
env:
GITHUB_TOKEN: ${{ github.token }}