mirror of
https://github.com/CompeyDev/setup-rokit.git
synced 2024-12-13 05:00:37 +00:00
Format
This commit is contained in:
parent
59c19b56c2
commit
3f6856a05d
2 changed files with 21 additions and 20 deletions
9
.github/actions/test/action.yml
vendored
9
.github/actions/test/action.yml
vendored
|
@ -7,16 +7,17 @@ inputs:
|
|||
version:
|
||||
required: false
|
||||
path:
|
||||
default: '.'
|
||||
default: "."
|
||||
required: false
|
||||
token:
|
||||
default: '${{ github.token }}'
|
||||
default: "${{ github.token }}"
|
||||
required: false
|
||||
|
||||
runs:
|
||||
using: 'composite'
|
||||
using: "composite"
|
||||
steps:
|
||||
- run: |
|
||||
- name: Create manifest file
|
||||
run: |
|
||||
cat > ${{ inputs.path }}/aftman.toml << EOF
|
||||
[tools]
|
||||
selene = "Kampfkarren/selene@0.19.1"
|
||||
|
|
22
action.yml
22
action.yml
|
@ -4,28 +4,28 @@ author: ok-nick
|
|||
|
||||
inputs:
|
||||
version:
|
||||
description: '`aftman` version in the form `vx.x.x`'
|
||||
description: "`aftman` version in the form `vx.x.x`"
|
||||
required: false
|
||||
trust-check:
|
||||
description: 'Whether to check trusts'
|
||||
deprecationMessage: 'Input `trust-check` is no longer used in `setup-aftman`, consider removing it from your configuration'
|
||||
default: 'true'
|
||||
description: "Whether to check trusts"
|
||||
deprecationMessage: "Input `trust-check` is no longer used in `setup-aftman`, consider removing it from your configuration"
|
||||
default: "true"
|
||||
required: false
|
||||
trusts:
|
||||
description: 'List of trusted tools separated by spaces'
|
||||
deprecationMessage: 'Input `trusts` is no longer used in `setup-aftman`, consider removing it from your configuration'
|
||||
description: "List of trusted tools separated by spaces"
|
||||
deprecationMessage: "Input `trusts` is no longer used in `setup-aftman`, consider removing it from your configuration"
|
||||
required: false
|
||||
path:
|
||||
description: 'Path to the `aftman.toml` directory'
|
||||
default: '.'
|
||||
description: "Path to the `aftman.toml` directory"
|
||||
default: "."
|
||||
required: false
|
||||
token:
|
||||
description: 'Github token from `github.token`'
|
||||
default: '${{ github.token }}'
|
||||
description: "Github token from `github.token`"
|
||||
default: "${{ github.token }}"
|
||||
required: false
|
||||
|
||||
runs:
|
||||
using: 'composite'
|
||||
using: "composite"
|
||||
steps:
|
||||
- name: Download aftman
|
||||
run: |
|
||||
|
|
Loading…
Reference in a new issue