diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml new file mode 100644 index 0000000..bd5877b --- /dev/null +++ b/.github/workflows/test-build.yml @@ -0,0 +1,20 @@ +name: "Test Build (No Upload)" + +on: + workflow_dispatch: + +jobs: + build: + runs-on: windows-latest + steps: + - uses: actions/checkout@v4 + + - name: Stage 1 Gathering Dependencies + shell: bash + working-directory: builder + run: bash stage1.sh + + - name: Stage 2 Assembling Repositories + shell: bash + working-directory: builder + run: bash stage2.sh