File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -51,17 +51,17 @@ jobs:
51
51
package-path : apple/swift-algorithms
52
52
run-tests : ${{ matrix.os != 'macos-15' }} # no tests on macOS ARM
53
53
54
- - name : Checkout skiptools/swift-sqlite
54
+ - name : Checkout skiptools/swift-sqlcipher
55
55
uses : actions/checkout@v4
56
56
with :
57
- repository : skiptools/swift-sqlite
58
- path : skiptools/swift-sqlite
59
- - name : Test skiptools/swift-sqlite
57
+ repository : skiptools/swift-sqlcipher
58
+ path : skiptools/swift-sqlcipher
59
+ - name : Test skiptools/swift-sqlcipher
60
60
uses : ./swift-android-action/
61
61
# uses: skiptools/swift-android-action@v2
62
62
with :
63
63
swift-version : ${{ matrix.swift-version }}
64
- package-path : skiptools/swift-sqlite
64
+ package-path : skiptools/swift-sqlcipher
65
65
run-tests : ${{ matrix.os != 'macos-15' }} # no tests on macOS ARM
66
66
67
67
toolchain-setup :
Original file line number Diff line number Diff line change 99
99
# translate swift-version "latest" into our known latest version
100
100
if [ "${{ inputs.swift-version }}" == 'latest' ]; then
101
101
# fetch the most recent release tag from the toolchain repo
102
- LATEST_TAG=$(curl -fsSL https://api.github.com/repos/skiptools/swift-android-toolchain/releases/latest | jq -r '.tag_name')
102
+ LATEST_TAG=$(curl -fsSL -H "Accept: application/vnd.github+json" -H "X-GitHub-Api-Version: 2022-11-28" --retry-all-errors --retry 100 --retry-max-time 600 https://api.github.com/repos/skiptools/swift-android-toolchain/releases/latest | jq -r '.tag_name')
103
103
echo "swift-version=${LATEST_TAG}" >> $GITHUB_OUTPUT
104
104
else
105
105
echo "swift-version=${{ inputs.swift-version }}" >> $GITHUB_OUTPUT
You can’t perform that action at this time.
0 commit comments