first commit
This commit is contained in:
commit
bca0ff6db5
3 changed files with 50 additions and 0 deletions
21
action.yaml
Normal file
21
action.yaml
Normal file
|
@ -0,0 +1,21 @@
|
|||
name: Upload a Build Artifact
|
||||
description: Upload a build artifact that can be used by subsequent workflow steps
|
||||
|
||||
inputs:
|
||||
name:
|
||||
description: Artifact name
|
||||
default: artifact
|
||||
path:
|
||||
description: A file, directory or wildcard pattern that describes what to upload
|
||||
required: true
|
||||
retention-days:
|
||||
description: >
|
||||
Duration after which artifact will expire in days.
|
||||
Minimum 1 day.
|
||||
Maximum 90 days unless changed from the repository settings page.
|
||||
|
||||
runs:
|
||||
using: composite
|
||||
steps:
|
||||
- name: Upload
|
||||
run: ${{ gitea.action_path }}/entrypoint.sh
|
Loading…
Add table
Add a link
Reference in a new issue