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 929d853 commit eb2c0c6Copy full SHA for eb2c0c6
.github/workflows/update-data.yml
@@ -13,10 +13,14 @@ jobs:
13
runs-on: ubuntu-22.04
14
steps:
15
- uses: actions/checkout@v4
16
- - run: curl -L https://swiftlang.github.io/swiftly/swiftly-install.sh | bash -s -- -y
+ - name: Install swiftly
17
+ run: |
18
+ curl -L -o /tmp/swiftly.tar.gz https://download.swift.org/swiftly/linux/swiftly-0.4.0-x86_64.tar.gz
19
+ tar -xzf /tmp/swiftly.tar.gz -C /usr/local/bin/
20
+ swiftly init -y --skip-install
21
- name: Run data update scripts
22
run: |
- source $HOME/.local/share/swiftly/env.sh
23
+ source "$HOME/.local/share/swiftly/env.sh"
24
python ./tools/update-builds.py
25
python ./tools/update-tag-by-version.py
26
0 commit comments