We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7028cc2 commit 6837006Copy full SHA for 6837006
.github/workflows/main.yml
@@ -81,6 +81,9 @@ jobs:
81
with:
82
submodules: true
83
84
+ - name: Install PowerShell
85
+ run: sh ./linux/install-pwsh.sh
86
+
87
- name: Download Linux artifact
88
uses: actions/download-artifact@v2
89
linux/install-pwsh.sh
@@ -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