This commit is contained in:
@ -7,46 +7,46 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: generate file
|
- name: generate file
|
||||||
run: echo cum > ./test.txt
|
run: echo cum > test.txt
|
||||||
- name: test artificat
|
- name: test artificat
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
# Name of the artifact to upload.
|
# Name of the artifact to upload.
|
||||||
# Optional. Default is 'artifact'
|
# Optional. Default is 'artifact'
|
||||||
name: cumdroplet
|
name: cumdroplet
|
||||||
|
|
||||||
# A file, directory or wildcard pattern that describes what to upload
|
# A file, directory or wildcard pattern that describes what to upload
|
||||||
# Required.
|
# Required.
|
||||||
path: ./test.txt
|
path: test.txt
|
||||||
|
|
||||||
# The desired behavior if no files are found using the provided path.
|
# The desired behavior if no files are found using the provided path.
|
||||||
# Available Options:
|
# Available Options:
|
||||||
# warn: Output a warning but do not fail the action
|
# warn: Output a warning but do not fail the action
|
||||||
# error: Fail the action with an error message
|
# error: Fail the action with an error message
|
||||||
# ignore: Do not output any warnings or errors, the action does not fail
|
# ignore: Do not output any warnings or errors, the action does not fail
|
||||||
# Optional. Default is 'warn'
|
# Optional. Default is 'warn'
|
||||||
if-no-files-found:
|
if-no-files-found:
|
||||||
|
|
||||||
# Duration after which artifact will expire in days. 0 means using default retention.
|
# Duration after which artifact will expire in days. 0 means using default retention.
|
||||||
# Minimum 1 day.
|
# Minimum 1 day.
|
||||||
# Maximum 90 days unless changed from the repository settings page.
|
# Maximum 90 days unless changed from the repository settings page.
|
||||||
# Optional. Defaults to repository settings.
|
# Optional. Defaults to repository settings.
|
||||||
retention-days: 1
|
retention-days: 1
|
||||||
|
|
||||||
# The level of compression for Zlib to be applied to the artifact archive.
|
# The level of compression for Zlib to be applied to the artifact archive.
|
||||||
# The value can range from 0 to 9.
|
# The value can range from 0 to 9.
|
||||||
# For large files that are not easily compressed, a value of 0 is recommended for significantly faster uploads.
|
# For large files that are not easily compressed, a value of 0 is recommended for significantly faster uploads.
|
||||||
# Optional. Default is '6'
|
# Optional. Default is '6'
|
||||||
compression-level:
|
compression-level:
|
||||||
|
|
||||||
# If true, an artifact with a matching name will be deleted before a new one is uploaded.
|
# If true, an artifact with a matching name will be deleted before a new one is uploaded.
|
||||||
# If false, the action will fail if an artifact for the given name already exists.
|
# If false, the action will fail if an artifact for the given name already exists.
|
||||||
# Does not fail if the artifact does not exist.
|
# Does not fail if the artifact does not exist.
|
||||||
# Optional. Default is 'false'
|
# Optional. Default is 'false'
|
||||||
overwrite: true
|
overwrite: true
|
||||||
|
|
||||||
# Whether to include hidden files in the provided path in the artifact
|
# Whether to include hidden files in the provided path in the artifact
|
||||||
# The file contents of any hidden files in the path should be validated before
|
# The file contents of any hidden files in the path should be validated before
|
||||||
# enabled this to avoid uploading sensitive information.
|
# enabled this to avoid uploading sensitive information.
|
||||||
# Optional. Default is 'false'
|
# Optional. Default is 'false'
|
||||||
include-hidden-files:
|
include-hidden-files:
|
Reference in New Issue
Block a user