upload-artifact/action.yml

57 lines
2.1 KiB
YAML
Raw Normal View History

2019-11-08 16:52:16 +00:00
name: 'Upload a Build Artifact'
description: 'Upload a build artifact that can be used by subsequent workflow steps'
2019-06-24 20:38:21 +00:00
author: 'GitHub'
inputs:
name:
2022-10-15 13:44:59 +00:00
description: 'Artifacts name'
default: 'artifacts'
2019-06-24 20:38:21 +00:00
path:
description: 'A file, directory or wildcard pattern that describes what to upload'
2019-07-23 19:35:00 +00:00
required: true
if-no-files-found:
description: >
The desired behavior if no files are found using the provided path.
Available Options:
warn: Output a warning but do not fail the action
error: Fail the action with an error message
ignore: Do not output any warnings or errors, the action does not fail
default: 'warn'
retention-days:
description: >
Duration after which artifact will expire in days. 0 means using default retention.
Minimum 1 day.
Maximum 90 days unless changed from the repository settings page.
2022-10-15 13:44:59 +00:00
artifact-per-file:
description: enable otption for uploading one artifact per file
default: "false"
artifact-name-rule:
description: >
2022-10-15 14:39:03 +00:00
// https://nodejs.org/docs/latest-v16.x/api/path.html#pathparsepath
// Modified from path.parse()
2022-10-15 13:44:59 +00:00
path.parse('/home/user/dir/file.txt');
// Returns:
// { root: '/',
// dir: '/home/user/dir',
2022-10-15 14:39:03 +00:00
// path: 'home/user/dir'
2022-10-15 13:44:59 +00:00
// base: 'file.txt',
// ext: '.txt',
// name: 'file' }
┌─────────────────────┬────────────┐
2022-10-15 14:39:03 +00:00
│ dir sep base │
├──────┬──────────────┼──────┬─────┤
│ root │ path │ name │ ext │
2022-10-15 13:44:59 +00:00
" / home/user/dir / file .txt "
└──────┴──────────────┴──────┴─────┘
(All spaces in the "" line should be ignored. They are purely for formatting.)
Every key need in wrapper: ${}
2022-10-15 14:39:03 +00:00
sep just for prompt, can't be used
2022-10-15 13:44:59 +00:00
default: ${base}
2019-06-24 20:38:21 +00:00
runs:
using: 'node16'
main: 'dist/index.js'