/zip

GitHub action to zip/unzip files

Primary LanguageDockerfileMIT LicenseMIT

Usage

Add the following steps to your jobs:

- name: Compress
  uses: TonyBogdanov/zip@1.0
  with:
      args: zip -qq -r ./archive.zip ./target
- name: Decompress
  uses: TonyBogdanov/zip@1.0
  with:
      args: unzip -qq ./archive.zip -d ./target