Zip Release
ActionsGitHub action that can be used to create release zip archive.
An example workflow config:
name: Create Archive
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Archive Release
uses: thedoctor0/zip-release@master
with:
filename: 'release.zip'
exclusions: '*.git* /*node_modules/* .editorconfig'
Argument | Description | Default |
---|---|---|
filename | Filename for archive | release.zip |
path | Base path for archive files | . |
exclusions | List of excluded files/directories |
Zip Release is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.