Skip to content

feat(runtime): migrate docker-git to bun and gridland #423

feat(runtime): migrate docker-git to bun and gridland

feat(runtime): migrate docker-git to bun and gridland #423

Workflow file for this run

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