This repository was archived by the owner on Feb 6, 2026. It is now read-only.
Merge pull request #8274 from systeminit/fix/sql-admin-user-delete #398
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: Push Clover Assets | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'bin/clover/**' | |
| - 'bin/hoist/**' | |
| - 'lib/jsr-systeminit/cf-db/**' | |
| jobs: | |
| push-assets: | |
| runs-on: ubuntu-latest | |
| env: | |
| SI_BEARER_TOKEN: ${{ secrets.SI_BEARER_TOKEN }} | |
| SI_MODULE_INDEX_URL: "https://module-index.systeminit.com" | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: denoland/setup-deno@v2 | |
| - uses: dtolnay/rust-toolchain@stable | |
| - name: Generate Specs | |
| run: | | |
| cd bin/clover | |
| LOG_LEVEL=debug deno task run generate-specs --provider=all --force-update-existing-packages | |
| - name: Push Specs | |
| run: | | |
| cd bin/hoist | |
| cargo run -- upload-all-specs -y --non-interactive --max-concurrent 25 -t ../clover/si-specs | |
| - name: Update Module Cache in Tools Prod | |
| run: | | |
| curl -X POST "https://tools.systeminit.com/api/v2/admin/update_module_cache" -H "Authorization: Bearer ${{ secrets.SI_PRODUCTION_SAAS_WORKSPACE_API_TOKEN }}" | |
| - name: Update Module Cache in Prod | |
| run: | | |
| curl -X POST "https://app.systeminit.com/api/v2/admin/update_module_cache" -H "Authorization: Bearer ${{ secrets.SI_TECHNICAL_OPERATIONS_WORKSPACE_TOKEN }}" |