mirror of
https://github.com/CompeyDev/setup-rokit.git
synced 2024-12-12 12:40:36 +00:00
fix path
This commit is contained in:
parent
6ba24fa635
commit
a06993db49
2 changed files with 3 additions and 3 deletions
2
.github/actions/env/action.yml
vendored
2
.github/actions/env/action.yml
vendored
|
@ -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"
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue