Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,8 @@ rustflags = []

[build]
incremental = true
rustc-wrapper = "sccache"
# Parallel compilation will use default (all available cores)

# Use sparse registry protocol for faster dependency resolution
[registries.crates-io]
protocol = "sparse"
protocol = "sparse"
8 changes: 8 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1381,13 +1381,21 @@ jobs:
echo "✅ Multi-arch manifest created for ${REPO}:${VERSION}, ${REPO}:${VERSION_COMMIT_TAG}, and ${REPO}:latest"

- name: Update Docker Hub repository README
id: dockerhub_readme
continue-on-error: true
uses: peter-evans/dockerhub-description@v4
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
repository: ${{ steps.vars.outputs.docker_repo }}
readme-filepath: ./docker/REPO-README.md

- name: Warn if Docker Hub README update failed
if: steps.dockerhub_readme.outcome == 'failure'
shell: bash
run: |
echo "::warning::Docker image publish succeeded, but Docker Hub README update failed. Ensure DOCKERHUB_USERNAME is a repo admin and DOCKERHUB_TOKEN has read/write/delete scope."

# ═══════════════════════════════════════════════════════════════════════════
# INTEGRATION TESTS - Smoke + TypeScript SDK + Dart SDK against Docker image
# ═══════════════════════════════════════════════════════════════════════════
Expand Down
Loading
Loading