2019-11-08 17:52:16 +01:00
|
|
|
name: 'Upload a Build Artifact'
|
|
|
|
description: 'Upload a build artifact that can be used by subsequent workflow steps'
|
2019-06-24 22:38:21 +02:00
|
|
|
author: 'GitHub'
|
|
|
|
inputs:
|
|
|
|
name:
|
2022-10-15 15:44:59 +02:00
|
|
|
description: 'Artifacts name'
|
|
|
|
default: 'artifacts'
|
2019-06-24 22:38:21 +02:00
|
|
|
path:
|
2020-04-28 17:18:53 +02:00
|
|
|
description: 'A file, directory or wildcard pattern that describes what to upload'
|
2019-07-23 21:35:00 +02:00
|
|
|
required: true
|
2020-07-31 17:27:37 +02:00
|
|
|
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'
|
2020-08-27 19:39:36 +02:00
|
|
|
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 15:44:59 +02:00
|
|
|
artifact-per-file:
|
|
|
|
description: enable otption for uploading one artifact per file
|
|
|
|
default: "false"
|
|
|
|
artifact-name-rule:
|
|
|
|
description: >
|
|
|
|
https://nodejs.org/docs/latest-v16.x/api/path.html#pathparsepath
|
|
|
|
|
|
|
|
path.parse('/home/user/dir/file.txt');
|
|
|
|
// Returns:
|
|
|
|
// { root: '/',
|
|
|
|
// dir: '/home/user/dir',
|
|
|
|
// base: 'file.txt',
|
|
|
|
// ext: '.txt',
|
|
|
|
// name: 'file' }
|
|
|
|
|
|
|
|
┌─────────────────────┬────────────┐
|
|
|
|
│ dir │ base │
|
|
|
|
├──────┬ ├──────┬─────┤
|
|
|
|
│ root │ │ name │ ext │
|
|
|
|
" / home/user/dir / file .txt "
|
|
|
|
└──────┴──────────────┴──────┴─────┘
|
|
|
|
(All spaces in the "" line should be ignored. They are purely for formatting.)
|
|
|
|
|
|
|
|
Every key need in wrapper: ${}
|
|
|
|
default: ${base}
|
2019-06-24 22:38:21 +02:00
|
|
|
runs:
|
2022-02-07 21:18:54 +01:00
|
|
|
using: 'node16'
|
2020-08-27 19:39:36 +02:00
|
|
|
main: 'dist/index.js'
|