File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -169,8 +169,6 @@ jobs:
169169 run : cargo build --release --locked
170170 env :
171171 EXT_PHP_RS_PHP_CONFIG : ${{ steps.php.outputs.php_config }}
172- env :
173- EXT_PHP_RS_PHP_CONFIG : ${{ steps.php.outputs.php_config }}
174172
175173 - name : Package artifact
176174 run : |
@@ -208,6 +206,10 @@ jobs:
208206 tools : phpize, php-config, composer
209207 coverage : none
210208
209+ - name : Resolve php-config
210+ id : php
211+ run : echo "php_config=$(command -v php-config)" >> "$GITHUB_OUTPUT"
212+
211213 - name : Install Rust toolchain
212214 uses : dtolnay/rust-toolchain@stable
213215 with :
@@ -227,6 +229,8 @@ jobs:
227229
228230 - name : Cargo build (release)
229231 run : cargo build --release --locked
232+ env :
233+ EXT_PHP_RS_PHP_CONFIG : ${{ steps.php.outputs.php_config }}
230234
231235 - name : Package artifact
232236 run : |
You can’t perform that action at this time.
0 commit comments