Skip to content

Commit

Permalink
ci: Install DuckDB directly.
Browse files Browse the repository at this point in the history
  • Loading branch information
jheer committed Feb 19, 2024
1 parent f413791 commit 9aaabc4
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,12 @@ jobs:
url: ${{ steps.deployment.outputs.page_url }}

steps:
- uses: opt-nc/[email protected]
with:
version: v0.10.0
- name: Install DuckDB CLI
run: |
wget https://github.com/duckdb/duckdb/releases/download/v0.10.0/duckdb_cli-linux-amd64.zip
unzip duckdb_cli-linux-amd64.zip
mkdir /opt/duckdb && mv duckdb /opt/duckdb && chmod +x /opt/duckdb/duckdb && sudo ln -s /opt/duckdb/duckdb /usr/bin/duckdb
rm duckdb_cli-linux-amd64.zip
- uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 9aaabc4

Please sign in to comment.