Skip to content

1.0.29

1.0.29 #26

Workflow file for this run

name: release-win
on:
push:
tags:
- "v*.*.*"
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
node-version: [20.x]
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 install
- run: npm run build:win
# - name: Release
# uses: softprops/action-gh-release@v1
# with:
# files: |
# dist/*.*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}