generated from layer5io/layer5-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 116
/
action.yml
51 lines (47 loc) · 1.34 KB
/
action.yml
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: 'Getnighthawk Layer5'
description: 'Publish getnighthawk assets'
inputs:
repo:
description: 'org/repo to publish actions to'
required: false
default: ''
version:
description: 'version of the release'
required: false
default: 'latest'
token:
description: 'optional Personal Access Token to access external repository'
required: false
default: ''
os:
description: 'Build Operating System. Eg: ubuntu-18.04, macos-latest....'
required: false
architecture:
description: 'Build Architecture. Eg: amd64,arm...'
required: false
runs:
using: "composite"
steps:
- run: ${{ github.action_path }}/scripts/setup.sh
env:
INPUT_OS: ${{ inputs.os }}
INPUT_ARCHITECTURE: ${{ inputs.architecture }}
shell: bash
- run: ${{ github.action_path }}/scripts/build.sh
shell: bash
- run: ${{ github.action_path }}/scripts/verify.sh
shell: bash
- run: ${{ github.action_path }}/scripts/publish.sh
env:
INPUT_REPO: ${{ inputs.repo }}
INPUT_VERSION: ${{ inputs.version }}
INPUT_TOKEN: ${{ inputs.token }}
INPUT_OS: ${{ inputs.os }}
INPUT_ARCHITECTURE: ${{ inputs.architecture }}
shell: bash
outputs:
version:
description: 'The version of the release or tag'
branding:
icon: 'download-cloud'
color: 'blue'