Skip to content

Fixed

Fixed #4

Workflow file for this run

name: Create Tag
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 20
- run: version=$(jq -r .version package.json) && git tag -a "v$version" -m "Version $version"