Add Swift SDK generation and release checks #888
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Check URLs | |
| on: | |
| push: | |
| branches: | |
| - main | |
| # Run on each PR to main | |
| pull_request: | |
| branches: | |
| - main | |
| # And every day at 03:00 UTC | |
| schedule: | |
| - cron: "0 3 * * *" | |
| jobs: | |
| check-urls: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Checkout submodules | |
| working-directory: ${{ github.workspace }} | |
| env: | |
| SWIFT_SUBMODULE_DEPLOY_KEY: ${{ secrets.SWIFT_SUBMODULE_DEPLOY_KEY }} | |
| run: bash scripts/checkout-submodules.bash | |
| - name: Check all URLs | |
| run: ./scripts/check_all_urls.sh |