feat(runtime): migrate docker-git to bun and gridland #423
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: Snapshot | |
| on: | |
| pull_request: | |
| branches: [main, next-minor, next-major] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| snapshot: | |
| name: Snapshot | |
| if: github.repository_owner == 'ProverCoderAI' | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install dependencies | |
| uses: ./.github/actions/setup | |
| with: | |
| bun-version: 1.3.11 | |
| - name: Build package | |
| run: bun run --cwd packages/app build | |
| - name: Create snapshot artifacts | |
| shell: bash | |
| run: | | |
| set -euo pipefail | |
| mkdir -p artifacts | |
| cd packages/app | |
| bun pm pack --quiet --ignore-scripts --destination ../../artifacts | |
| - name: Upload snapshot artifacts | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: context-doc-snapshot | |
| path: artifacts/*.tgz |