chore: import upstream snapshot with attribution
CI / Run CI (push) Has been cancelled
CI / check-backend (push) Has been cancelled
CI / check-frontend (push) Has been cancelled
CI / tests (push) Has been cancelled
CI / e2e-tests (push) Has been cancelled
Copilot Setup Steps / copilot-setup-steps (push) Has been cancelled
CI / Run CI (push) Has been cancelled
CI / check-backend (push) Has been cancelled
CI / check-frontend (push) Has been cancelled
CI / tests (push) Has been cancelled
CI / e2e-tests (push) Has been cancelled
Copilot Setup Steps / copilot-setup-steps (push) Has been cancelled
This commit is contained in:
@@ -0,0 +1,52 @@
|
||||
name: Publish libs
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
dry_run:
|
||||
description: 'Dry run (test publishing)'
|
||||
required: false
|
||||
default: false
|
||||
type: boolean
|
||||
release:
|
||||
types: [published]
|
||||
|
||||
permissions: read-all
|
||||
|
||||
jobs:
|
||||
validate:
|
||||
name: Validate inputs
|
||||
runs-on: ubuntu-slim
|
||||
steps:
|
||||
- name: Validate publishing branch and destination package index
|
||||
run: |
|
||||
if [[ "${{ github.ref_name }}" != "main" && "${{ github.event_name }}" != "release" ]]; then
|
||||
if [[ "${{ inputs.dry_run }}" != "true" ]]; then
|
||||
echo "❌ Error: Only build from main branch or release tag can be published to npm registry."
|
||||
echo "Please check 'Dry run (test publishing)' when running from branch: ${{ github.ref_name }}"
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
echo "✅ Validation passed"
|
||||
ci:
|
||||
needs: [validate]
|
||||
uses: ./.github/workflows/ci.yaml
|
||||
secrets: inherit
|
||||
build-n-publish:
|
||||
name: Upload libs release to npm registry
|
||||
runs-on: ubuntu-latest
|
||||
needs: [ci]
|
||||
permissions:
|
||||
contents: read
|
||||
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- uses: ./.github/actions/pnpm-node-install
|
||||
name: Install Node, pnpm and dependencies.
|
||||
|
||||
- name: Build react-client
|
||||
run: pnpm --filter @chainlit/react-client build
|
||||
|
||||
- name: Publish packages to npm
|
||||
# --no-git-checks allows testing from non-main branches and publishing from release tags
|
||||
run: pnpm publish --recursive --no-git-checks ${{ inputs.dry_run && '--dry-run' || '' }}
|
||||
Reference in New Issue
Block a user