From dd1f5b4e860a715ad679bab98b9591e21621a4b8 Mon Sep 17 00:00:00 2001 From: Loup-Garou911XD Date: Sun, 22 Sep 2024 14:15:15 +0530 Subject: [PATCH] Zipping the docker builds --- .github/workflows/release.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 356a19f6..72ddc967 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -222,13 +222,13 @@ jobs: run: | make docker-gui-release make docker-save - - name: Rename the build - run: mv build/docker/bombsquad_gui_release_docker.tar build/docker/bombsquad_docker_gui.tar + - name: Zip the build + run: zip build/docker/bombsquad_docker_gui.tar.zip build/docker/bombsquad_gui_release_docker.tar - name: Upload the build uses: ncipollo/release-action@v1 with: allowUpdates: true - artifacts: build/docker/bombsquad_docker_gui.tar + artifacts: build/docker/bombsquad_docker_gui.tar.zip release_docker_server_image: runs-on: ubuntu-latest @@ -244,13 +244,13 @@ jobs: run: | make docker-server-release make docker-save - - name: Rename the build - run: mv build/docker/bombsquad_server_release_docker.tar build/docker/bombsquad_docker_server.tar + - name: Zip the build + run: zip build/docker/bombsquad_docker_server.tar.zip build/docker/bombsquad_server_release_docker.tar - name: Upload the build uses: ncipollo/release-action@v1 with: allowUpdates: true - artifacts: build/docker/bombsquad_docker_server.tar + artifacts: build/docker/bombsquad_docker_server.tar.zip release_sphinx_docs: runs-on: ubuntu-latest