Skip to content

Commit 98df58d

Browse files
Remove private Swift submodule checkout workaround
1 parent bd842eb commit 98df58d

4 files changed

Lines changed: 4 additions & 46 deletions

File tree

.github/workflows/check-codegen.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,12 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v6
1717
with:
18+
submodules: recursive
1819
persist-credentials: true
1920

2021
- name: Check all submodules up-to-date
21-
working-directory: ${{ github.workspace }}
22-
env:
23-
SWIFT_SUBMODULE_DEPLOY_KEY: ${{ secrets.SWIFT_SUBMODULE_DEPLOY_KEY }}
2422
run: |
25-
bash scripts/checkout-submodules.bash --remote
23+
git submodule update --recursive --remote
2624
git diff --exit-code
2725
2826
check-swagger:

.github/workflows/check-urls.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,8 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- uses: actions/checkout@v6
20-
21-
- name: Checkout submodules
22-
working-directory: ${{ github.workspace }}
23-
env:
24-
SWIFT_SUBMODULE_DEPLOY_KEY: ${{ secrets.SWIFT_SUBMODULE_DEPLOY_KEY }}
25-
run: bash scripts/checkout-submodules.bash
20+
with:
21+
submodules: recursive
2622

2723
- name: Check all URLs
2824
run: ./scripts/check_all_urls.sh

scripts/check-urls.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@
3737
URLS_TO_IGNORE = frozenset(
3838
[
3939
"https://api.aspose.cloud",
40-
# Temporary while the Swift SDK repository is private during bootstrap.
41-
"https://github.com/aspose-barcode-cloud/Aspose.BarCode-Cloud-SDK-for-Swift.git",
4240
"https://www.aspose.cloud/404",
4341
"https://www.aspose.cloud/404/",
4442
]

scripts/checkout-submodules.bash

Lines changed: 0 additions & 34 deletions
This file was deleted.

0 commit comments

Comments
 (0)