mirror of
https://github.com/CompeyDev/setup-rokit.git
synced 2024-12-12 12:40:36 +00:00
more config
This commit is contained in:
parent
88015e5b4d
commit
12c9e1b424
1 changed files with 31 additions and 3 deletions
32
action.yml
32
action.yml
|
@ -1,15 +1,26 @@
|
|||
name: 'setup-aftman'
|
||||
description: 'Github action to install aftman'
|
||||
author: 'ok-nick'
|
||||
|
||||
inputs:
|
||||
version:
|
||||
description: '`aftman` version in the form `vx.x.x`'
|
||||
required: false
|
||||
no-trust-check:
|
||||
description: "Whether to check trusts"
|
||||
default: 'false'
|
||||
required: false
|
||||
trusts:
|
||||
description: 'List of trusted tools separated by spaces'
|
||||
required: false
|
||||
path:
|
||||
description: 'Path to the `aftman.toml` directory'
|
||||
default: ''
|
||||
required: false
|
||||
token:
|
||||
description: 'Github token from `secrets.GITHUB_TOKEN`'
|
||||
required: true
|
||||
|
||||
|
||||
runs:
|
||||
using: 'composite'
|
||||
steps:
|
||||
|
@ -33,7 +44,24 @@ runs:
|
|||
env:
|
||||
GITHUB_TOKEN: ${{ inputs.token }}
|
||||
|
||||
- name: Setup trusts
|
||||
if: ${{ inputs.no-trust-check == 'false' }}
|
||||
run: |
|
||||
for name in ${{ inputs.trusts }}; do
|
||||
aftman trust $name
|
||||
done
|
||||
shell: bash
|
||||
|
||||
- name: Install tools
|
||||
run: |
|
||||
cd ${{ inputs.path }}
|
||||
if [ ${{ inputs.no-trust-check }} == 'true' ]; do
|
||||
aftman install --no-trust-check
|
||||
else
|
||||
aftman install
|
||||
fi
|
||||
shell: bash
|
||||
|
||||
branding:
|
||||
icon: link-2
|
||||
color: blue
|
||||
|
||||
|
|
Loading…
Reference in a new issue