Wrangler deploy: Add framework id, build command and deploy command to autoconfig_summary field in the deploy output entry
#10223
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: Prerelease | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| - d1 | |
| - workflows | |
| - next | |
| - v3-maintenance | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| if: ${{ github.repository_owner == 'cloudflare' }} | |
| runs-on: ubuntu-slim | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| timeout-minutes: 30 | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 1 | |
| - name: Install Dependencies | |
| uses: ./.github/actions/install-dependencies | |
| with: | |
| turbo-api: ${{ secrets.TURBO_API }} | |
| turbo-team: ${{ secrets.TURBO_TEAM }} | |
| turbo-token: ${{ secrets.TURBO_TOKEN }} | |
| turbo-signature: ${{ secrets.TURBO_REMOTE_CACHE_SIGNATURE_KEY }} | |
| - run: echo ${{ github.head_ref }} | |
| - name: Build | |
| run: pnpm build --filter="./packages/*" | |
| env: | |
| NODE_ENV: "production" | |
| CI_OS: ${{ runner.os }} | |
| # this is the "test/staging" key for sparrow analytics | |
| SPARROW_SOURCE_KEY: "5adf183f94b3436ba78d67f506965998" | |
| ALGOLIA_APP_ID: ${{ secrets.ALGOLIA_APP_ID }} | |
| SENTRY_DSN: "https://9edbb8417b284aa2bbead9b4c318918b@sentry10.cfdata.org/583" | |
| ALGOLIA_PUBLIC_KEY: ${{ secrets.ALGOLIA_PUBLIC_KEY }} | |
| WRANGLER_PRERELEASE_LABEL: ${{ github.head_ref || github.ref_name }} | |
| - name: Upload packages | |
| run: node -r esbuild-register .github/prereleases/upload.mjs |