From a06993db49591a8e1550be67657b7e60993b1fe1 Mon Sep 17 00:00:00 2001 From: ok-nick <25470747+ok-nick@users.noreply.github.com> Date: Sun, 17 Jul 2022 23:59:47 -0400 Subject: [PATCH] fix path --- .github/actions/env/action.yml | 2 +- action.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/env/action.yml b/.github/actions/env/action.yml index 214fe8c..5f0904e 100644 --- a/.github/actions/env/action.yml +++ b/.github/actions/env/action.yml @@ -7,7 +7,7 @@ runs: steps: - shell: bash run: | - cat > aftman.toml << EOF + cat > ./aftman.toml << EOF [tools] selene = "Kampfkarren/selene@0.19.1" stylua = "JohnnyMorganz/stylua@0.14.0" diff --git a/action.yml b/action.yml index 0c66505..b535a26 100644 --- a/action.yml +++ b/action.yml @@ -53,7 +53,7 @@ runs: echo "$HOME/.aftman/bin" >> $GITHUB_PATH - name: Setup trusts - if: ${{ inputs.no-trust-check == 'false' }} + if: ${{ inputs.no-trust-check == false }} shell: bash run: | for name in ${{ inputs.trusts }}; do @@ -64,7 +64,7 @@ runs: shell: bash run: | cd ${{ inputs.path }} - if [ ${{ inputs.no-trust-check }} == 'true' ]; then + if [ ${{ inputs.no-trust-check }} == true ]; then aftman install --no-trust-check else aftman install