We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0aefdf3 commit 05ad597Copy full SHA for 05ad597
.github/workflows/sdk.yml
@@ -73,10 +73,12 @@ jobs:
73
74
- name: Installing Linux Dependencies
75
if: ${{ inputs.target == 'Linux' && steps.cache.outputs.cache-hit != 'true' }}
76
+ shell: bash
77
run: |
78
apt-get update
79
apt-get install -y zlib1g-dev libcurl4-openssl-dev libssl-dev build-essential cmake curl
- curl -sSL https://dot.net/v1/dotnet-install.sh | bash /dev/stdin --channel 9.0 --install-dir /usr/share/dotnet
80
+ set -eo pipefail
81
+ curl -sSL --retry 5 https://dot.net/v1/dotnet-install.sh | bash /dev/stdin --channel 9.0 --install-dir /usr/share/dotnet
82
echo "/usr/share/dotnet" >> $GITHUB_PATH
83
env:
84
DEBIAN_FRONTEND: noninteractive
0 commit comments