-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
36 additions
and
33 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
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
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 |
---|---|---|
|
@@ -41,19 +41,10 @@ jobs: | |
content="${content//$'\r'/'%0D'}" | ||
echo "::set-output name=message::$content" | ||
- name: "Install dependencies" | ||
- name: "Build PHAR" | ||
run: | | ||
composer config platform.php 7.1.3 | ||
composer update --no-dev --no-interaction --no-progress --prefer-dist | ||
composer config --unset platform.php | ||
- name: "Download Box" | ||
run: | | ||
curl -sL https://github.com/box-project/box/releases/download/3.9.1/box.phar -o box.phar | ||
chmod +x box.phar | ||
- name: "Compile PHAR" | ||
run: ./box.phar compile | ||
make build | ||
mv build/churn.phar . | ||
- name: "Sign PHAR" | ||
run: echo "$GPG_PASSPHRASE" | gpg --pinentry-mode=loopback --passphrase-fd 0 -u [email protected] --output churn.phar.asc --detach-sign churn.phar | ||
|
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
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
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,13 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<phar xmlns="https://phar.io/xml/manifest/1.0"> | ||
<contains name="bmitch/churn-php" version="dev-master" type="application" /> | ||
<copyright> | ||
<author name="Bill Mitchell" email="[email protected]"/> | ||
<license type="MIT" url="https://github.com/bmitch/churn-php/blob/master/LICENSE.md"/> | ||
</copyright> | ||
<require> | ||
<php version="^7.1 || ^8.0"> | ||
<ext name="json"/> | ||
</php> | ||
</requires> | ||
</phar> |