File tree 1 file changed +8
-7
lines changed
1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -57,17 +57,18 @@ jobs:
57
57
key : ${{ runner.os }}-composer
58
58
- run : composer install
59
59
shell : bash
60
- - run : composer test
61
- shell : bash
62
- - name : Download build package
63
- run : gh release download v${{ env.PHAR_TOOL_VERSION }} -R=${{ env.PHAR_TOOL_REPOSITORY }}
60
+ - name : Run Tests
61
+ run : composer test
62
+ - name : Prepare Release Artifact
64
63
env :
65
64
GH_TOKEN : ${{ github.token }}
66
- - name : Build package
67
- run : |
65
+ run : |
66
+ composer install --no-dev
67
+ gh release download v${{ env.PHAR_TOOL_VERSION }} -R=${{ env.PHAR_TOOL_REPOSITORY }}
68
68
chmod +x ./phar-composer-${{ env.PHAR_TOOL_VERSION }}.phar
69
69
./phar-composer-${{ env.PHAR_TOOL_VERSION }}.phar build ./ mysql2jsonl
70
- - uses : actions/upload-artifact@v4
70
+ - name : Upload Release Artifact
71
+ uses : actions/upload-artifact@v4
71
72
with :
72
73
name : build-${{ github.sha }}-${{ matrix.php-version }}
73
74
path : mysql2jsonl
You can’t perform that action at this time.
0 commit comments