Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix missing version in PHARs build on GA #8997

Merged
merged 1 commit into from Dec 23, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/build-phar.yml
Expand Up @@ -43,6 +43,8 @@ jobs:
coverage: none

- uses: actions/checkout@v3
with:
fetch-depth: 0 # required for composer to automatically detect root package version

- name: Get Composer Cache Directories
id: composer-cache
Expand All @@ -62,8 +64,9 @@ jobs:

- name: Run composer install
run: composer install -o
env:
COMPOSER_ROOT_VERSION: dev-master
# DO NOT set this, we need composer to figure out the version itself
# env:
# COMPOSER_ROOT_VERSION: dev-master

- run: bin/build-phar.sh
env:
Expand Down