-
Notifications
You must be signed in to change notification settings - Fork 630
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#1483 - Add new workflow release-phar.yml
- Loading branch information
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
on: | ||
push: | ||
release: | ||
types: | ||
- created | ||
|
||
name: Append phalcon.phar to release | ||
|
||
jobs: | ||
build: | ||
name: Compile and upload Phar | ||
runs-on: ubuntu-18.04 | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set PHP 7.2 | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: '7.2' | ||
extensions: phalcon-4.0.5 | ||
|
||
- name: Compile phalcon.phar | ||
run: | | ||
composer install | ||
wget https://github.com/box-project/box/releases/download/3.9.1/box.phar | ||
php box.phar compile | ||
- name: Check existence of compiled .phar | ||
run: test -e phalcon.phar && exit 0 || exit 10 | ||
|
||
# - name: Upload to Release | ||
# uses: actions/upload-release-asset@v1 | ||
# env: | ||
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
# with: | ||
# upload_url: ${{ github.event.release.upload_url }} | ||
# asset_path: ./phalcon.phar | ||
# asset_name: phalcon.phar | ||
# asset_content_type: application/octet-stream |