From f93316344580bc0ff45d553b2320c6b264b9b8d8 Mon Sep 17 00:00:00 2001 From: ok-nick <25470747+ok-nick@users.noreply.github.com> Date: Sun, 17 Jul 2022 23:43:31 -0400 Subject: [PATCH] shell: bash --- .github/actions/env.yml | 3 ++- action.yml | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/actions/env.yml b/.github/actions/env.yml index dd8e6db..214fe8c 100644 --- a/.github/actions/env.yml +++ b/.github/actions/env.yml @@ -5,7 +5,8 @@ author: ok-nick runs: using: 'composite' steps: - - run: | + - shell: bash + run: | cat > aftman.toml << EOF [tools] selene = "Kampfkarren/selene@0.19.1" diff --git a/action.yml b/action.yml index 4fc5608..9931a80 100644 --- a/action.yml +++ b/action.yml @@ -46,13 +46,14 @@ runs: - name: Setup trusts if: ${{ inputs.no-trust-check == 'false' }} + shell: bash run: | for name in ${{ inputs.trusts }}; do aftman trust $name done - shell: bash - name: Install tools + shell: bash run: | cd ${{ inputs.path }} if [ ${{ inputs.no-trust-check }} == 'true' ]; do @@ -60,7 +61,6 @@ runs: else aftman install fi - shell: bash branding: icon: link-2