diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3aa8f2ff..68fbf6dc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,6 +32,7 @@ jobs: dump-root: name: Dump Root FS runs-on: ${{ matrix.runner }} + needs: [build] strategy: fail-fast: false matrix: @@ -53,9 +54,18 @@ jobs: - name: Checkout Source uses: actions/checkout@v4 + - name: Download Windows Artifacts + uses: actions/download-artifact@v4 + with: + name: Windows Release Artifacts + path: build/release/artifacts + - name: Dump Root FS run: src/tools/create-root.bat + - name: Dump API Set + run: cd root && ../build/release/artifacts/dump-apiset.exe + - name: Upload Artifacts uses: actions/upload-artifact@v4 with: