Home > Article > Development Tools > how github actions zip
1. How GitHub Actions Compresses Files
GitHub Actions provides a built-in action named "github/js-action-compress" that simplifies the process of zipping files. This action utilizes the JavaScript-based p-zip module to perform compression.
2. How to Zip Files in GitHub Actions
To use the "github/js-action-compress" action to zip files, follow these steps:
<code class="yml">name: Compress Files on: push: branches: - main jobs: compress: runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v3 - name: Compress Files uses: github/js-action-compress@v1 with: files: 'path/to/files.zip' folders: 'path/to/folder'</code>
3. How to Zip a Directory in GitHub Actions
To compress an entire directory using the "github/js-action-compress" action, simply replace "files" with "folders":
<code class="yml">files: 'path/to/files.zip'</code>
becomes:
<code class="yml">folders: 'path/to/directory'</code>
The above is the detailed content of how github actions zip. For more information, please follow other related articles on the PHP Chinese website!