Prepare changelog for 1.7.2 #10
Workflow file for this run
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
name : "Release" | |
on: | |
push: | |
tags: | |
- "[0-9]+.[0-9]+.[0-9]+" | |
jobs: | |
release: | |
name: "Upload Release Assets" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Configure GPG key | |
run: | | |
mkdir -p ~/.gnupg/ | |
chmod 0700 ~/.gnupg/ | |
echo "$GPG_PRIVATE_KEY" > ~/.gnupg/private.key | |
echo "$GPG_PASSPHRASE" | gpg --pinentry-mode=loopback --passphrase-fd 0 --import ~/.gnupg/private.key | |
env: | |
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }} | |
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} | |
- name: "Checkout" | |
uses: "actions/checkout@v3" | |
- name: "Install PHP" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
coverage: "none" | |
php-version: "8.0" | |
tools: composer:v2 | |
- name: "Print tag message" | |
id: tag | |
run: | | |
git fetch --tags -f | |
content="$(git tag -l --format='%(contents)' $(git describe --abbrev=0))" | |
content="${content//'%'/'%25'}" | |
content="${content//$'\n'/'%0A'}" | |
content="${content//$'\r'/'%0D'}" | |
echo "message=$content" >> $GITHUB_OUTPUT | |
- name: "Build PHAR" | |
run: | | |
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 | |
env: | |
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} | |
- name: "Create release" | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: Release ${{ github.ref }} | |
draft: false | |
prerelease: false | |
body: ${{ steps.tag.outputs.message }} | |
- name: Upload PHAR | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./churn.phar | |
asset_name: churn.phar | |
asset_content_type: application/octet-stream | |
- name: Upload PHAR signature | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./churn.phar.asc | |
asset_name: churn.phar.asc | |
asset_content_type: application/octet-stream |