We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7028cc2 commit 55873faCopy full SHA for 55873fa
.github/workflows/main.yml
@@ -24,6 +24,9 @@ jobs:
24
with:
25
submodules: true
26
27
+ - name: Install PowerShell
28
+ run: sh ./linux/install-pwsh.sh
29
+
30
# Build:
31
- name: Install
32
shell: pwsh
@@ -81,6 +84,9 @@ jobs:
81
84
82
85
83
86
87
88
89
90
- name: Download Linux artifact
91
uses: actions/download-artifact@v2
92
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