diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9dda7ab..11a3f7d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -35,13 +35,15 @@ jobs: - name: Save docker image run: | - docker save research-template | gzip > /tmp/research-template.tar.gz + docker save research-template | pigz > /tmp/research-template.tar.gz - name: Upload docker image uses: actions/upload-artifact@v4 with: name: research-template-image path: /tmp/research-template.tar.gz + # Disable compression; the file is already compressed + compression-level: 0 publish: needs: [build-and-test]