Skip to content

Commit

Permalink
setup github actions ci(copied from https://github.com/EasyIME/PIME/b…
Browse files Browse the repository at this point in the history
  • Loading branch information
dongyuwei committed Aug 22, 2024
1 parent 955bc0e commit 39e2d11
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Build

on:
push:
pull_request:
branches: [main]

jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
with:
submodules: 'true'
- name: Use Install NSIS
uses: repolevedavaj/[email protected]
with:
nsis-version: 3.08
- name: Run build.bat
run: |
.\build.bat
- name: Build the installer
run: |
cmd /C "C:\Program Files (x86)\NSIS\Bin\makensis.exe" ".\installer\installer.nsi"
- uses: actions/upload-artifact@v4
with:
name: Installer
path: installer/*.exe

0 comments on commit 39e2d11

Please sign in to comment.