mirror of
https://github.com/CompeyDev/setup-rokit.git
synced 2024-12-13 13:20:36 +00:00
shell: bash
This commit is contained in:
parent
98e4665da4
commit
f933163445
2 changed files with 4 additions and 3 deletions
3
.github/actions/env.yml
vendored
3
.github/actions/env.yml
vendored
|
@ -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"
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue