Skip to content

Commit

Permalink
fix phar build on gh-actions
Browse files Browse the repository at this point in the history
  • Loading branch information
julien-jean committed Nov 26, 2024
1 parent e3eadc1 commit d9554a4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build_master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ jobs:
tools: box:4.6.2
-
name: Build blackfire-player.phar
run: box compile -c box.json
run: |
composer install --no-interaction --prefer-dist
box compile -c box.json
-
name: Push blackfire-player.phar to S3
run: |
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/build_tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ jobs:
tools: box:4.6.2
-
name: Build blackfire-player.phar
run: box compile -c box.json
run: |
composer install --no-interaction --prefer-dist
box compile -c box.json
-
name: Write player version in blackfire-player.version
run: echo ${{env.VERSION}} >> blackfire-player.version
Expand Down

0 comments on commit d9554a4

Please sign in to comment.