Skip to content

Commit 6837006

Browse files
committed
(#51) Linux: install PowerShell
1 parent 7028cc2 commit 6837006

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

.github/workflows/main.yml

+3
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,9 @@ jobs:
8181
with:
8282
submodules: true
8383

84+
- name: Install PowerShell
85+
run: sh ./linux/install-pwsh.sh
86+
8487
- name: Download Linux artifact
8588
uses: actions/download-artifact@v2
8689
with:

linux/install-pwsh.sh

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
set -e
2+
3+
cd /tmp
4+
wget https://packages.microsoft.com/config/ubuntu/18.04/packages-microsoft-prod.deb
5+
dpkg -i packages-microsoft-prod.deb
6+
7+
apt-get update
8+
apt-get install powershell

0 commit comments

Comments
 (0)