We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7028cc2 commit 76767aaCopy full SHA for 76767aa
.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
+ run: bash ./linux/install-pwsh.sh
89
90
- name: Download Linux artifact
91
uses: actions/download-artifact@v2
92
linux/install-pwsh.sh
@@ -0,0 +1,9 @@
1
+set -e
2
3
+apt-get update && apt-get install wget
4
5
+cd /tmp
6
+wget https://packages.microsoft.com/config/ubuntu/18.04/packages-microsoft-prod.deb
7
+dpkg -i packages-microsoft-prod.deb
8
9
+apt-get update && apt-get install powershell
0 commit comments