shell: bash

This commit is contained in:
ok-nick 2022-07-17 23:43:31 -04:00
parent 98e4665da4
commit f933163445
2 changed files with 4 additions and 3 deletions

View file

@ -5,7 +5,8 @@ author: ok-nick
runs: runs:
using: 'composite' using: 'composite'
steps: steps:
- run: | - shell: bash
run: |
cat > aftman.toml << EOF cat > aftman.toml << EOF
[tools] [tools]
selene = "Kampfkarren/selene@0.19.1" selene = "Kampfkarren/selene@0.19.1"

View file

@ -46,13 +46,14 @@ runs:
- name: Setup trusts - name: Setup trusts
if: ${{ inputs.no-trust-check == 'false' }} if: ${{ inputs.no-trust-check == 'false' }}
shell: bash
run: | run: |
for name in ${{ inputs.trusts }}; do for name in ${{ inputs.trusts }}; do
aftman trust $name aftman trust $name
done done
shell: bash
- name: Install tools - name: Install tools
shell: bash
run: | run: |
cd ${{ inputs.path }} cd ${{ inputs.path }}
if [ ${{ inputs.no-trust-check }} == 'true' ]; do if [ ${{ inputs.no-trust-check }} == 'true' ]; do
@ -60,7 +61,6 @@ runs:
else else
aftman install aftman install
fi fi
shell: bash
branding: branding:
icon: link-2 icon: link-2