Skip to content

Merge pull request #3 from vuongle2609/update-editor #14

Merge pull request #3 from vuongle2609/update-editor

Merge pull request #3 from vuongle2609/update-editor #14

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 }}
- run: 'Compress-Archive -Path .\release\0.0.0\* -Destination Dori.zip'
- uses: 'marvinpinto/action-automatic-releases@latest'
with:
repo_token: '${{ secrets.GITHUB_TOKEN }}'
automatic_release_tag: 'latest'
prerelease: true
title: 'Development Build'
files: |
Dori.zip
id: 'automatic_releases'