This repository was deprecated on 2024-02-06
The zip upload artifact action zips a file, or directory and uploads it as an artifact. This reduces the size of an artifact to help save on GitHub Artifact space usages. This action has the same inputs as upload-artifact so it can be changed from that to this by changing the uses
line in the workflow.
Parameter | Is Required | Default Value | Description |
---|---|---|---|
name |
false | artifact | The Artifact Name |
path |
true | N/A, required value | A file, directory, or wildcard pattern that describes what to upload |
if-no-files-found |
false | warn | The action to take if no files are found at the path. Options are warn , error , or info . |
retention-days |
false | 15 | The number of days to retain the artifact before it expires. |
This workflow has zero outputs.
jobs:
job1:
runs-on: [self-hosted, im-linux]
steps:
...
- name: 'Zip and Upload Artifact'
uses: im-open/[email protected]
with:
name: ${{ env.CODE_COVERAGE_REPORT_NAME }}
path: ${{ env.CODE_COVERAGE_DIR }}
...
job2:
runs-on: [self-hosted, im-linux]
steps:
...
- name: Zip and Upload Files and Ignore one
uses: im-open/[email protected]
with:
name: ${{ env.FILE_NAME }}
path: |
${{ env.CODE_COVERAGE_DIR }}
!${{ env.CODE_COVERAGE_DIR }}/ignore-me.txt
...
When creating PRs, please review the following guidelines:
- The action code does not contain sensitive information.
- At least one of the commit messages contains the appropriate
+semver:
keywords listed under Incrementing the Version for major and minor increments. - The README.md has been updated with the latest version of the action. See Updating the README.md for details.
This repo uses git-version-lite in its workflows to examine commit messages to determine whether to perform a major, minor or patch increment on merge if source code changes have been made. The following table provides the fragment that should be included in a commit message to active different increment strategies.
Increment Type | Commit Message Fragment |
---|---|
major | +semver:breaking |
major | +semver:major |
minor | +semver:feature |
minor | +semver:minor |
patch | default increment type, no comment needed |
The files and directories that are considered source code are listed in the files-with-code
and dirs-with-code
arguments in both the build-and-review-pr and increment-version-on-merge workflows.
If a PR contains source code changes, the README.md should be updated with the latest action version. The build-and-review-pr workflow will ensure these steps are performed when they are required. The workflow will provide instructions for completing these steps if the PR Author does not initially complete them.
If a PR consists solely of non-source code changes like changes to the README.md
or workflows under ./.github/workflows
, version updates do not need to be performed.
If changes are made to the action's source code, the usage examples section of this file should be updated with the next version of the action. Each instance of this action should be updated. This helps users know what the latest tag is without having to navigate to the Tags page of the repository. See Incrementing the Version for details on how to determine what the next version will be or consult the first workflow run for the PR which will also calculate the next version.
This project has adopted the im-open's Code of Conduct.
Copyright © 2023, Extend Health, LLC. Code released under the MIT license.