File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed
Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -93,11 +93,21 @@ jobs:
9393 sudo chmod +x /usr/local/bin/pie
9494 pie --version
9595
96+ - name : Initialize temporary git repo for version detection
97+ working-directory : src/extension/pg-query-ext
98+ run : |
99+ git init
100+ git config user.email "[email protected] " 101+ git config user.name "CI"
102+ git add .
103+ git commit -m "temp commit for PIE installation test"
104+ git tag 0.0.9999
105+
96106 - name : Install extension via PIE (from local)
97107 run : |
98108 sudo pie repository:remove packagist.org
99109 sudo pie repository:add path ${{ github.workspace }}/src/extension/pg-query-ext
100- sudo pie install flow-php/pg-query-ext:dev-1.x
110+ sudo pie install flow-php/pg-query-ext:0.0.9999
101111
102112 - name : Verify extension is loaded
103113 run : |
You can’t perform that action at this time.
0 commit comments