duckdb ^1.5.3-r.2 (#1196) #1635
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: CD-pkg-pr-new | |
| on: [push, pull_request] | |
| permissions: | |
| contents: read | |
| jobs: | |
| deploy-preview: | |
| runs-on: ubuntu-latest | |
| env: | |
| TURBO_API: 'http://127.0.0.1:9080' | |
| TURBO_TEAM: 'flowblade' | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: ⚙️ Use Node.js 24.x | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24.x | |
| package-manager-cache: false | |
| - name: 📥 Monorepo install | |
| uses: ./.github/actions/yarn-nm-install | |
| - name: ⏩ TurboRepo local server | |
| uses: felixmosh/turborepo-gh-artifacts@v4 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| server-token: ${{ secrets.CI_TURBO_SERVER_TOKEN }} | |
| - name: 🏗 Build packages | |
| run: yarn turbo run build --filter='!@examples/*' --filter='!@docs/*' --token="${{ secrets.CI_TURBO_SERVER_TOKEN }}" | |
| - name: 📦 Publish on pkg.pr.new | |
| run: yarn exec pkg-pr-new publish "./packages/*" |