Sebastian Tobie
17180c52a6
Einige Prüfungen sind fehlgeschlagen
/ configuration (push) Failing after 13s
24 Zeilen
507 B
YAML
24 Zeilen
507 B
YAML
---
|
|
name: Upload Tar Artifact
|
|
author: "Sebastian"
|
|
description: Uploads the file or directory as an artifact into github/forgejo
|
|
inputs:
|
|
name:
|
|
default: artifact.tar
|
|
description: Artifact name
|
|
path:
|
|
default: /bin
|
|
description: Paths of the file or directory with the data
|
|
outputs:
|
|
T:
|
|
description: just a sample output
|
|
value: TEST
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: collect
|
|
shell: sh
|
|
run: "/bin/env"
|
|
- name: upload
|
|
shell: sh
|
|
run: "/bin/true"
|