Skip to content

Commit ab097a4

Browse files
committed
Specify shell (we're using sh, right?)
1 parent 4c0af78 commit ab097a4

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/actions/steam-utmt-setup/action.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ runs:
44
using: "composite"
55
steps:
66
- name: Download steamcmd
7+
shell: sh
78
run: |
89
sudo add-apt-repository multiverse
910
sudo dpkg --add-architecture i386
@@ -26,14 +27,18 @@ runs:
2627
with:
2728
dotnet-version: 8.0.x
2829
- name: Restore UTMT dependencies
30+
shell: sh
2931
run: dotnet restore utmt/UndertaleModCli
3032
- name: Build UTMT CLI
33+
shell: sh
3134
run: dotnet build utmt/UndertaleModCli --no-restore
3235
- name: Publish UTMT CLI
36+
shell: sh
3337
run: dotnet publish utmt/UndertaleModCli -c Release -r linux-x64 --self-contained true -p:PublishSingleFile=false --output utmtcli
3438
- name: Setup Python
3539
uses: actions/setup-python@v5
3640
with:
3741
python-version: '3.12'
3842
- name: Install Python dependencies
43+
shell: sh
3944
run: pip install -r requirements.txt

0 commit comments

Comments
 (0)