Skip to content

Workflow file for this run

name: Release
on:
push:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: build-win
run: |
npm install pnpm
pnpm install
pnpm build
pnpm go:build:win
mv jieshao.loract-umi-demo.exe loract-umi-demo_win_x64.exe

Check failure on line 20 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

You have an error in your yaml syntax on line 20
- name: Upload windows artifact
uses: actions/github-action-publish-binaries@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
- args: 'loract-umi-demo_win_x64.exe'