diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 041a8ab62..ac3c95f89 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1038,10 +1038,18 @@ jobs: - name: 🛠️ Build using docker run: | - docker buildx build . -f dist/web/Dockerfile --progress=plain --build-arg 'JOBS=4' --output out --target raw + mkdir -p out/nightly + docker buildx build . -f dist/web/Dockerfile --progress=plain --build-arg 'JOBS=4' --output out/nightly --target raw + + - name: ⬇️ Download Release + uses: robinraju/release-downloader@v1 + with: + latest: true + fileName: 'imhex-*-Web.zip' - name: 🔨 Fix permissions run: | + unzip imhex-*-Web.zip -d out chmod -c -R +rX "out/" - name: ⬆️ Upload artifacts diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ac241ea80..de31e3713 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -117,7 +117,8 @@ jobs: run: | mv "Windows Portable x86_64.zip" imhex-${{ env.IMHEX_VERSION }}-Windows-Portable-x86_64.zip mv "Windows Portable NoGPU x86_64.zip" imhex-${{ env.IMHEX_VERSION }}-Windows-Portable-NoGPU-x86_64.zip - mv "ImHex Web.zip" imhex-${{ env.IMHEX_VERSION }}-web.zip + mv "ImHex Web.zip" imhex-${{ env.IMHEX_VERSION }}-Web.zip + rm artifact.tar - name: ⬆️ Upload everything to release uses: softprops/action-gh-release@4634c16e79c963813287e889244c50009e7f0981