This commit is contained in:
ok-nick 2022-07-17 23:59:47 -04:00
parent 6ba24fa635
commit a06993db49
2 changed files with 3 additions and 3 deletions

View file

@ -7,7 +7,7 @@ runs:
steps: steps:
- shell: bash - shell: bash
run: | run: |
cat > aftman.toml << EOF cat > ./aftman.toml << EOF
[tools] [tools]
selene = "Kampfkarren/selene@0.19.1" selene = "Kampfkarren/selene@0.19.1"
stylua = "JohnnyMorganz/stylua@0.14.0" stylua = "JohnnyMorganz/stylua@0.14.0"

View file

@ -53,7 +53,7 @@ runs:
echo "$HOME/.aftman/bin" >> $GITHUB_PATH echo "$HOME/.aftman/bin" >> $GITHUB_PATH
- name: Setup trusts - name: Setup trusts
if: ${{ inputs.no-trust-check == 'false' }} if: ${{ inputs.no-trust-check == false }}
shell: bash shell: bash
run: | run: |
for name in ${{ inputs.trusts }}; do for name in ${{ inputs.trusts }}; do
@ -64,7 +64,7 @@ runs:
shell: bash shell: bash
run: | run: |
cd ${{ inputs.path }} cd ${{ inputs.path }}
if [ ${{ inputs.no-trust-check }} == 'true' ]; then if [ ${{ inputs.no-trust-check }} == true ]; then
aftman install --no-trust-check aftman install --no-trust-check
else else
aftman install aftman install