-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
30 lines (30 loc) · 881 Bytes
/
action.yml
File metadata and controls
30 lines (30 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
name: Check datafiles
author: BSData
description: >
Compiles, checks and tests datafiles in the repository in terms
of validity, integrity and bugs, saves generated artifacts to
'staging-path' (output).
inputs:
token:
description: GitHub auth token to authorize uploading release assets
required: false
default: ${{ github.token }}
staging-path:
description: Path where generated assets will be saved (set as output as well).
required: false
default: ${{ runner.temp }}/assets
outputs:
staging-path:
description: Path where generated assets were saved.
value: ${{ inputs.staging-path }}
runs:
using: composite
steps:
- run: ${{ github.action_path }}/action.ps1 -StagingPath $env:STAGING_PATH
shell: pwsh
id: script
env:
STAGING_PATH: ${{ inputs.staging-path }}
branding:
icon: book-open
color: blue