2025-01-18 14:42:00 +01:00
|
|
|
---
|
2025-01-18 16:44:12 +01:00
|
|
|
name: Upload Tar Artifact
|
|
|
|
author: "Sebastian"
|
|
|
|
description: Uploads the file or directory as an artifact into github/forgejo
|
2025-01-18 14:42:00 +01:00
|
|
|
inputs:
|
|
|
|
name:
|
|
|
|
default: artifact.tar
|
|
|
|
description: Artifact name
|
|
|
|
path:
|
2025-01-19 10:09:19 +01:00
|
|
|
default: /bin
|
2025-01-18 14:42:00 +01:00
|
|
|
description: Paths of the file or directory with the data
|
2025-01-19 10:15:45 +01:00
|
|
|
outputs:
|
|
|
|
T:
|
|
|
|
description: just a sample output
|
|
|
|
value: TEST
|
2025-01-18 14:42:00 +01:00
|
|
|
runs:
|
|
|
|
using: composite
|
|
|
|
steps:
|
|
|
|
- name: collect
|
2025-01-18 16:14:33 +01:00
|
|
|
shell: sh
|
2025-01-18 17:52:46 +01:00
|
|
|
run: "/bin/env"
|
2025-01-18 14:42:00 +01:00
|
|
|
- name: upload
|
2025-01-18 16:14:33 +01:00
|
|
|
shell: sh
|
2025-01-18 17:52:46 +01:00
|
|
|
run: "/bin/true"
|