MIRROR: javascript for ๐Ÿœ's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

test bundle zip creator

+29
+29
.github/workflows/build.yml
··· 72 72 uses: ./.github/workflows/build-windows-x64.yml 73 73 with: 74 74 build_timestamp: ${{ needs.prepare.outputs.timestamp }} 75 + 76 + bundle: 77 + needs: 78 + - macos-aarch64 79 + - macos-x64 80 + - macos-aarch64-mbedtls 81 + - macos-x64-mbedtls 82 + - linux-glibc-x64 83 + - linux-glibc-aarch64 84 + - linux-musl-x64 85 + - linux-musl-aarch64 86 + - windows-x64 87 + runs-on: ubuntu-latest 88 + steps: 89 + - uses: actions/download-artifact@v4 90 + with: 91 + path: artifacts 92 + - name: Create combined archive 93 + run: | 94 + mkdir -p zipped 95 + for dir in artifacts/*/; do 96 + name=$(basename "$dir") 97 + (cd "$dir" && zip -r "../../zipped/${name}.zip" .) 98 + done 99 + (cd zipped && zip -r ../ant-all-platforms.zip .) 100 + - uses: actions/upload-artifact@v4 101 + with: 102 + name: ant-all-platforms 103 + path: ant-all-platforms.zip