-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
- name: Zip Release | ||
# You may pin to the exact commit or the version. | ||
# uses: TheDoctor0/zip-release@b57d897cb5d60cb78b51a507f63fa184cfe35554 | ||
uses: TheDoctor0/zip-release@0.7.6 | ||
with: | ||
# Filename for archive | ||
filename: # default is release.zip | ||
# Base path for archive files | ||
path: # optional, default is . | ||
# Working directory before zipping | ||
directory: # optional, default is . | ||
# List of excluded files / directories | ||
exclusions: # optional, default is | ||
# List of excluded files / directories with recursive wildcards (only applies on Windows with `zip` type) | ||
recursive_exclusions: # optional, default is | ||
# Provide any custom parameters to the zipping command | ||
custom: # optional, default is | ||
# Tool to use for archiving | ||
type: # optional, default is zip | ||
# An extra command that will run before zipping | ||
command: # optional, default is | ||
|