Added shell: bash.
This commit is contained in:
parent
43afb346af
commit
a3e2f196c2
1 changed files with 4 additions and 0 deletions
4
.github/actions/setup/action.yml
vendored
4
.github/actions/setup/action.yml
vendored
|
@ -3,6 +3,7 @@ runs:
|
||||||
using: composite
|
using: composite
|
||||||
steps:
|
steps:
|
||||||
- name: Current Env
|
- name: Current Env
|
||||||
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
env | sort -u
|
env | sort -u
|
||||||
|
|
||||||
|
@ -19,13 +20,16 @@ runs:
|
||||||
|
|
||||||
echo $HOME/.roswell/bin >> $GITHUB_PATH
|
echo $HOME/.roswell/bin >> $GITHUB_PATH
|
||||||
- name: Upgrade ASDF to the Latest Version
|
- name: Upgrade ASDF to the Latest Version
|
||||||
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
ros install asdf
|
ros install asdf
|
||||||
- name: Install Qlot
|
- name: Install Qlot
|
||||||
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
ros install qlot
|
ros install qlot
|
||||||
echo .qlot/bin >> $GITHUB_PATH
|
echo .qlot/bin >> $GITHUB_PATH
|
||||||
- name: Install Dependencies
|
- name: Install Dependencies
|
||||||
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
rm -fr qlfile
|
rm -fr qlfile
|
||||||
touch qlfile
|
touch qlfile
|
||||||
|
|
Loading…
Reference in a new issue