Generated v4.2.2 #37
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 CI | |
on: | |
push: | |
tags: | |
# This looks like a regex, but it's actually a filter pattern | |
# see https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet | |
- 'release/v?[0-9]*' | |
env: | |
GITHUB_REF_NAME: ${{ github.ref_name }} | |
jobs: | |
publish: | |
name: Publish to Packagist | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
path: main | |
- name: Set up environment variables | |
run: ./.github/scripts/publish_env.sh >> $GITHUB_ENV | |
working-directory: ./main | |
shell: bash | |
- name: Install PHP and Composer | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: "7.3" | |
tools: composer:v2 | |
- name: Pack API client | |
run: ./.github/scripts/pack.sh | |
working-directory: ./main | |
shell: bash | |
- name: Publish to Packagist | |
working-directory: ./main | |
run: ./.github/scripts/publish.sh | |
shell: bash | |
- name: Write release body file | |
run: CODE_PATH=./main ./main/.github/scripts/release_body.sh > ./dist/release_body.txt | |
shell: bash | |
- name: Create release (dry run) | |
if: ${{ env.DRY_RUN == '1' }} | |
run: cat ./dist/release_body.txt | |
- name: Create GitHub release | |
if: ${{ env.DRY_RUN != '1' }} | |
uses: softprops/action-gh-release@v1 | |
with: | |
name: v${{ env.VERSION }} | |
body_path: ./dist/release_body.txt | |
files: | | |
./dist/${{ env.PACKAGE_FILENAME }} | |
draft: false | |
tag_name: v${{ env.VERSION }} | |
prerelease: ${{ env.PUBLISH_TAG != 'latest' }} |