From 0661377e387251d655f66571b907db6a931ea9a7 Mon Sep 17 00:00:00 2001 From: Sam Ansmink Date: Fri, 6 Oct 2023 15:26:54 +0200 Subject: [PATCH] fix deploy step --- .github/workflows/MainDistributionPipeline.yml | 4 ++-- .github/workflows/_extension_deploy.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/MainDistributionPipeline.yml b/.github/workflows/MainDistributionPipeline.yml index de05311..fc7aaad 100644 --- a/.github/workflows/MainDistributionPipeline.yml +++ b/.github/workflows/MainDistributionPipeline.yml @@ -27,5 +27,5 @@ jobs: with: duckdb_version: main extension_name: quack - deploy_latest: ${{ github.ref == 'refs/heads/main' || github.ref == 'refs/heads/feature' }} - deploy_versioned: ${{ github.ref == 'refs/heads/main' || github.ref == 'refs/heads/feature' }} \ No newline at end of file + deploy_latest: true + deploy_versioned: true \ No newline at end of file diff --git a/.github/workflows/_extension_deploy.yml b/.github/workflows/_extension_deploy.yml index f8c7542..4c2235e 100644 --- a/.github/workflows/_extension_deploy.yml +++ b/.github/workflows/_extension_deploy.yml @@ -118,4 +118,4 @@ jobs: git fetch --tags export EXT_VERSION=`git tag --points-at HEAD` export EXT_VERSION=${EXT_VERSION:=`git log -1 --format=%h`} - ${{ inputs.deploy_script }} ${{ inputs.extension_name }} $EXT_VERSION $DUCKDB_VERSION ${{ matrix.duckdb_arch }} $BUCKET_NAME ${{inputs.set_latest || 'true' && 'false'}} $BUCKET_NAME ${{inputs.set_versioned || 'true' && 'false'}} \ No newline at end of file + ${{ inputs.deploy_script }} ${{ inputs.extension_name }} $EXT_VERSION $DUCKDB_VERSION ${{ matrix.duckdb_arch }} $BUCKET_NAME ${{inputs.set_latest || 'true' && 'false'}} ${{inputs.set_versioned || 'true' && 'false'}} \ No newline at end of file