fix: fix how pocket ic use custom domain provider and its tests (#9053) #754
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: Bazel Dependency Submission | |
| on: | |
| push: | |
| branches: | |
| - 'master' | |
| - 'master-private' | |
| permissions: | |
| contents: write | |
| jobs: | |
| bazel-dependency-submission: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | |
| - name: Run Bazel Dependency Submission | |
| env: | |
| SHELL_WRAPPER: "/usr/bin/time" | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| set -euo pipefail | |
| export PYTHONPATH=$PWD/ci/src:$PWD/ci/src/dependencies | |
| $SHELL_WRAPPER python3 ci/src/dependencies/job/bazel_rust_gh_submission_job.py |