Skip to content
check-square

GitHub Action

tonybogdanov-zip

1.0 Latest version

tonybogdanov-zip

check-square

tonybogdanov-zip

GitHub action to zip/unzip files

Installation

Copy and paste the following snippet into your .yml file.

              

- name: tonybogdanov-zip

uses: TonyBogdanov/[email protected]

Learn more about this action in TonyBogdanov/zip

Choose a version

Usage

Add the following steps to your jobs:

- name: Compress
  uses: TonyBogdanov/[email protected]
  with:
      args: zip -qq -r ./archive.zip ./target
- name: Decompress
  uses: TonyBogdanov/[email protected]
  with:
      args: unzip -qq ./archive.zip -d ./target