ModelHandle/.github/workflows/release_publish.yml
Chris Bateman 06a24ef908
Update Github Workflows (#435)
* update build.yml

* Add Node 20 to testing matrix

* Remove EOL Node 16

* Update remaining workflows
2023-11-29 13:02:38 +01:00

28 lines
604 B
YAML

name: Release Publish
on:
push:
tags:
- '*'
jobs:
build:
runs-on: windows-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- run: npm install
- run: npm run create_dist
- uses: ncipollo/release-action@v1
with:
artifacts: "build/package/engine/*"
bodyFile: ".github/workflows/release_template.md"
draft: true
token: ${{ secrets.GITHUB_TOKEN }}