Skip to content

GitHub action that can be used to create zip file using the repository files.

byteever/action-build-zip

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Action Build ZIP

GitHub action that can be used to create zip file using the repository files.

Because of GitHub Actions limitations container-based actions only work on Linux.

exclusions

Use a .distignore file to exclude files in building zip file.

Usage

name: Create Zip File
on: [push]
jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@master
      - name: Generate ZIP
        uses: byteever/action-build-zip@master
        with:
          filename: 'release.zip'

exclusions

Use a .distignore file to exclude files in building zip file.

Arguments

filename

Default: repository name

The filename for the generated zip file.

About

GitHub action that can be used to create zip file using the repository files.

Resources

Stars

Watchers

Forks

Packages

No packages published