We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 206c74f commit 4c1fe2bCopy full SHA for 4c1fe2b
.github/workflows/release-pie-install.yml
@@ -66,14 +66,18 @@ jobs:
66
[Environment]::SetEnvironmentVariable("Path", $env:Path + ";$target", "User")
67
$env:Path += ";$target"
68
69
- - name: Install extension (PIE)
70
- if: runner.os != 'Linux'
+ - name: Install extension (PIE) macOS
+ if: runner.os == 'macOS'
71
run: pie install saturio/duckdb
72
73
- name: Install extension (PIE) Linux
74
if: runner.os == 'Linux'
75
run: sudo pie install saturio/duckdb
76
77
+ - name: Install extension (PIE) Windows
78
+ if: runner.os == 'Windows'
79
+ run: pie install saturio/duckdb --allow-non-interactive-project-install --skip-enable-extension
80
+
81
- name: Smoke test (PHP, Unix)
82
if: runner.os != 'Windows'
83
run: |
0 commit comments