Skip to content

update exe build step #15

update exe build step

update exe build step #15

Workflow file for this run

---
name: 'release'
on:
push:
branches:
- 'main'
jobs:
buildWin:
runs-on: 'windows-latest'
steps:
- name: 'Checkout source code'
uses: 'actions/checkout@v3'
with:
lfs: true
fetch-depth: 0
- name: '🔧 setup node'
uses: actions/setup-node@v3
with:
cache: 'npm'
cache-dependency-path: 'package-lock.json'
node-version: 20
- run: 'npm install'
- run: 'npm run build'
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: 'marvinpinto/action-automatic-releases@latest'
with:
repo_token: '${{ secrets.GITHUB_TOKEN }}'
automatic_release_tag: 'latest'
prerelease: true
title: 'Development Build'
files: |
.\release\0.0.0\Dori-Windows-0.0.0-Setup.exe
id: 'automatic_releases'