2022-07-18 04:41:58 +01:00
|
|
|
name: setup-aftman
|
|
|
|
description: Github action to install aftman
|
|
|
|
author: ok-nick
|
2022-07-18 02:32:18 +01:00
|
|
|
|
|
|
|
inputs:
|
|
|
|
version:
|
|
|
|
description: '`aftman` version in the form `vx.x.x`'
|
|
|
|
required: false
|
2022-07-18 17:58:28 +01:00
|
|
|
trust-check:
|
2022-07-18 03:56:05 +01:00
|
|
|
description: "Whether to check trusts"
|
2022-07-18 17:58:28 +01:00
|
|
|
default: 'true'
|
2022-07-18 03:56:05 +01:00
|
|
|
required: false
|
|
|
|
trusts:
|
|
|
|
description: 'List of trusted tools separated by spaces'
|
|
|
|
required: false
|
|
|
|
path:
|
|
|
|
description: 'Path to the `aftman.toml` directory'
|
2022-07-18 17:07:51 +01:00
|
|
|
default: '.'
|
2022-07-18 03:56:05 +01:00
|
|
|
required: false
|
2022-07-18 02:32:18 +01:00
|
|
|
token:
|
2022-07-18 16:49:36 +01:00
|
|
|
description: 'Github token from `github.token`'
|
2022-07-18 16:50:58 +01:00
|
|
|
default: '${{ github.token }}'
|
2022-07-18 17:07:51 +01:00
|
|
|
required: false
|
|
|
|
|
2022-07-18 02:32:18 +01:00
|
|
|
runs:
|
|
|
|
using: 'composite'
|
|
|
|
steps:
|
|
|
|
- name: Download aftman
|
|
|
|
if: runner.os == 'Linux'
|
2022-07-18 03:56:05 +01:00
|
|
|
run: gh release download ${{ inputs.version }} --repo LPGhatguy/aftman --pattern *linux-x86_64.zip
|
2022-07-18 17:20:56 +01:00
|
|
|
shell: bash
|
2022-07-18 04:55:01 +01:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ inputs.token }}
|
2022-07-18 02:32:18 +01:00
|
|
|
|
|
|
|
- name: Download aftman
|
|
|
|
if: runner.os == 'macOS'
|
|
|
|
run: gh release download ${{ inputs.version }} --repo LPGhatguy/aftman --pattern *macos-x86_64.zip
|
2022-07-18 17:20:56 +01:00
|
|
|
shell: bash
|
2022-07-18 04:55:01 +01:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ inputs.token }}
|
2022-07-18 02:32:18 +01:00
|
|
|
|
2022-07-18 04:41:58 +01:00
|
|
|
- name: Download aftman
|
|
|
|
if: runner.os == 'Windows'
|
|
|
|
run: gh release download ${{ inputs.version }} --repo LPGhatguy/aftman --pattern *windows-x86_64.zip
|
2022-07-18 17:20:56 +01:00
|
|
|
shell: bash
|
2022-07-18 04:55:01 +01:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ inputs.token }}
|
2022-07-18 04:41:58 +01:00
|
|
|
|
2022-07-18 02:32:18 +01:00
|
|
|
- name: Install aftman
|
|
|
|
run: |
|
|
|
|
unzip aftman*.zip
|
|
|
|
./aftman self-install
|
|
|
|
echo "$HOME/.aftman/bin" >> $GITHUB_PATH
|
2022-07-18 17:20:56 +01:00
|
|
|
shell: bash
|
2022-07-18 02:32:18 +01:00
|
|
|
|
2022-07-18 03:56:05 +01:00
|
|
|
- name: Setup trusts
|
2022-07-18 18:00:34 +01:00
|
|
|
if: inputs.trust-check == 'true'
|
2022-07-18 03:56:05 +01:00
|
|
|
run: |
|
|
|
|
for name in ${{ inputs.trusts }}; do
|
|
|
|
aftman trust $name
|
|
|
|
done
|
2022-07-18 17:20:56 +01:00
|
|
|
shell: bash
|
2022-07-18 03:56:05 +01:00
|
|
|
|
|
|
|
- name: Install tools
|
|
|
|
run: |
|
|
|
|
cd ${{ inputs.path }}
|
2022-07-18 18:00:34 +01:00
|
|
|
if [ ${{ inputs.trust-check }} == false ]; then
|
2022-07-18 18:01:33 +01:00
|
|
|
aftman install --no-trust-check
|
2022-07-18 03:56:05 +01:00
|
|
|
else
|
|
|
|
aftman install
|
|
|
|
fi
|
2022-07-18 17:20:56 +01:00
|
|
|
shell: bash
|
2022-07-18 03:56:05 +01:00
|
|
|
|
2022-07-18 02:32:18 +01:00
|
|
|
branding:
|
|
|
|
icon: link-2
|
|
|
|
color: blue
|