-
Notifications
You must be signed in to change notification settings - Fork 629
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1485 from phalcon/4.0.x
4.0.4
- Loading branch information
Showing
23 changed files
with
8,113 additions
and
501 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,39 @@ | ||
on: | ||
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 |
Oops, something went wrong.