Skip to content

Update duckdb, set stable branch #53

Update duckdb, set stable branch

Update duckdb, set stable branch #53

#
# This workflow calls the main distribution pipeline from DuckDB to build, test and (optionally) release the extension
#
name: Stable Extension Distribution Pipeline
on:
pull_request:
branches:
- v1.1.3
paths-ignore:
- '**/README.md'
- 'doc/**'
push:
branches:
- v1.1.3
paths-ignore:
- '**/README.md'
- 'doc/**'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref || '' }}-${{ github.base_ref || '' }}-${{ github.ref != 'refs/heads/main' || github.sha }}
cancel-in-progress: true
jobs:
duckdb-stable-build:
name: Build extension binaries
uses: duckdb/extension-ci-tools/.github/workflows/[email protected]

Check failure on line 27 in .github/workflows/StableDistributionPipeline.yml

View workflow run for this annotation

GitHub Actions / Stable Extension Distribution Pipeline

Invalid workflow file

The workflow is not valid. .github/workflows/StableDistributionPipeline.yml (Line: 27, Col: 11): Input ci_tools_version is required, but not provided while calling.
with:
duckdb_version: v1.1.3
extension_name: spatial
duckdb-stable-deploy:
name: Deploy extension binaries
needs: duckdb-stable-build
uses: duckdb/extension-ci-tools/.github/workflows/[email protected]
secrets: inherit
with:
duckdb_version: v1.1.3
extension_name: spatial
deploy_latest: ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/v1.1.3' }}