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 a731bfa commit c4fa06cCopy full SHA for c4fa06c
.github/actions/install-swift/action.yml
@@ -5,6 +5,7 @@ runs:
5
using: "composite"
6
steps:
7
- name: Install apt dependencies
8
+ shell: bash
9
run: |
10
sudo apt-get -qq update
11
sudo apt-get -qq -y install curl gpg binutils git unzip gnupg2 libc6-dev \
@@ -15,6 +16,7 @@ runs:
15
16
DEBIAN_FRONTEND: noninteractive
17
18
- name: Install Swiftly
19
20
21
curl -O "https://download.swift.org/swiftly/linux/swiftly-$(uname -m).tar.gz"
22
tar zxf "swiftly-$(uname -m).tar.gz"
@@ -30,6 +32,7 @@ runs:
30
32
echo "PATH=$PATH" >> $GITHUB_ENV
31
33
34
- name: Install Swift
35
36
37
swiftly install
38
swift --version
0 commit comments