We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb9d32a commit ae73aebCopy full SHA for ae73aeb
.github/workflows/release-plz.yml
@@ -10,6 +10,11 @@ permissions:
10
issues: write
11
pull-requests: write
12
13
+env:
14
+ DUCKDB_VERSION: "1.4.2"
15
+ DUCKDB_LIB_DIR: /opt/duckdb
16
+ LD_LIBRARY_PATH: /opt/duckdb
17
+
18
jobs:
19
release-plz-release:
20
name: Release-plz release
@@ -33,6 +38,11 @@ jobs:
33
38
with:
34
39
app-id: ${{ vars.RELEASE_BOT_CLIENT_ID }}
35
40
private-key: ${{ secrets.RELEASE_BOT_PRIVATE_KEY }}
41
+ - name: Get DuckDB
42
+ run: |
43
+ wget https://github.com/duckdb/duckdb/releases/download/v${{ env.DUCKDB_VERSION }}/libduckdb-linux-amd64.zip
44
+ unzip libduckdb-linux-amd64.zip -d /opt/duckdb
45
+ rm libduckdb-linux-amd64.zip
36
46
- name: Run release-plz
37
47
uses: release-plz/[email protected]
48
0 commit comments