GitHub Actions support for non-zipped Artifacts
Support for non-zipped artifacts is here Historically, GitHub Actions has only supported uploading artifacts as zip files. The actions/upload-artifact action automatically zipped the files. Downloading them using the actions/download-artifact action would then unzip them. This is changing with new versions of both actions that now support non-zipped artifacts. Uploading non-zipped artifacts Starting with the v7.0.0 release of the actions/upload-artifact action, you can now include the archive: false parameter to skip zipping the file during upload. ...