25 add build for v0102 #199
This file contains 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: Main Extension Distribution Pipeline | |
on: | |
push: | |
paths-ignore: | |
- '**/README.md' | |
pull_request: | |
workflow_dispatch: | |
permissions: | |
id-token: write # This is required for requesting the JWT | |
contents: read # This is required for actions/checkout | |
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-v0101: | |
name: Build v.0.10.1 extension binaries | |
uses: ./.github/workflows/_extension_build.yml | |
with: | |
duckdb_version: v0.10.1 | |
extension_name: erpl | |
exclude_archs: osx_amd64;osx_arm64;linux_arm64;windows_amd64_rtools;wasm_mvp;wasm_eh;wasm_threads | |
vcpkg_commit: 9edb1b8e590cc086563301d735cae4b6e732d2d2 | |
secrets: inherit | |
duckdb-stable-deploy-v0101: | |
name: Deploy extension binaries | |
needs: duckdb-stable-build-v0101 | |
uses: ./.github/workflows/_extension_deploy.yml | |
secrets: inherit | |
with: | |
duckdb_version: v0.10.1 | |
extension_name: erpl | |
exclude_archs: osx_amd64;osx_arm64;linux_arm64;windows_amd64_rtools;wasm_mvp;wasm_eh;wasm_threads | |
deploy_latest: ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/master' }} | |
deploy_versioned: ${{ !(startsWith(github.ref, 'refs/tags/v')) && !(github.ref == 'refs/heads/master') }} | |
duckdb-stable-build-v0102: | |
name: Build v.0.10.2 extension binaries | |
uses: ./.github/workflows/_extension_build.yml | |
with: | |
duckdb_version: v0.10.2 | |
extension_name: erpl | |
exclude_archs: osx_amd64;osx_arm64;linux_arm64;windows_amd64_rtools;wasm_mvp;wasm_eh;wasm_threads | |
vcpkg_commit: 9edb1b8e590cc086563301d735cae4b6e732d2d2 | |
secrets: inherit | |
duckdb-stable-deploy-v0102: | |
name: Deploy extension binaries | |
needs: duckdb-stable-build-v0102 | |
uses: ./.github/workflows/_extension_deploy.yml | |
secrets: inherit | |
with: | |
duckdb_version: v0.10.2 | |
extension_name: erpl | |
exclude_archs: osx_amd64;osx_arm64;linux_arm64;windows_amd64_rtools;wasm_mvp;wasm_eh;wasm_threads | |
deploy_latest: ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/master' }} | |
deploy_versioned: ${{ !(startsWith(github.ref, 'refs/tags/v')) && !(github.ref == 'refs/heads/master') }} | |