Skip to content

Commit

Permalink
fix deploy step
Browse files Browse the repository at this point in the history
  • Loading branch information
samansmink committed Oct 6, 2023
1 parent 6d51cc5 commit 0661377
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/MainDistributionPipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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' }}
deploy_latest: true
deploy_versioned: true
2 changes: 1 addition & 1 deletion .github/workflows/_extension_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'}}
${{ 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'}}

0 comments on commit 0661377

Please sign in to comment.