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:
|
||||
- shell: bash
|
||||
run: |
|
||||
cat > aftman.toml << EOF
|
||||
cat > ./aftman.toml << EOF
|
||||
[tools]
|
||||
selene = "Kampfkarren/selene@0.19.1"
|
||||
stylua = "JohnnyMorganz/stylua@0.14.0"
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue