diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..6c8005c --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,26 @@ +name: build + +on: + workflow_dispatch: + +jobs: + build: + runs-on: windows-latest + steps: + - name: checkout + uses: actions/checkout@v4 + + - name: run build + shell: cmd + run: build.bat + + - name: run installer build + shell: cmd + run: installer/build.bat + + - name: upload installer artifacts + uses: actions/upload-artifact@v4 + with: + name: installer artifacts + path: installer/dist/** + retention-days: 7