Publishes Linux packages (DEBs and RPMs) to Cloudsmith's posit/open repository.
Workflow: .github/workflows/publish-cloudsmith.yml
Called automatically by create-release.yml for stable releases (non-prereleases).
Use for:
- Republishing older releases
- Fixing package issues
- Testing with dry-run
- Go to Actions → Publish to Cloudsmith
- Click "Run workflow"
- Configure:
- version:
v1.8.26(release tag) - dry-run: Check for testing, uncheck for production
- version:
- Run workflow
Always test with dry-run before production:
dry-run: true # Test - validates but doesn't publish
dry-run: false # Production - publishes to CloudsmithDry-run downloads packages and validates parameters without pushing to Cloudsmith.
Workflow expects these in the GitHub release:
quarto-${VERSION}-linux-amd64.deb
quarto-${VERSION}-linux-arm64.deb
quarto-${VERSION}-linux-x86_64.rpm
quarto-${VERSION}-linux-aarch64.rpm
Verify with:
gh release view v1.8.26 --json assets --jq '.assets[].name' | grep -E '(deb|rpm)'- Validation: Checks assets exist via GitHub API
- Matrix: 4 parallel jobs (deb/rpm × x86_64/aarch64)
- Publishing: Uses
cloudsmith pushwith--republishflag - Repository:
posit/open/any-distro/any-version(distribution-agnostic)
Assets missing: Run Build Installers workflow to rebuild packages
Authentication failed: Check CLOUDSMITH_API_KEY secret in repository settings