🩹 Change match
statement to conditional for PHP 7.x (Fixes #90) (#91)
#18
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: Publish release | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
release: | |
name: Publish release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup PHP, with composer and extensions | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '7.4' | |
coverage: xdebug | |
env: | |
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install Composer dependencies | |
run: composer install --no-progress --prefer-dist --optimize-autoloader --no-suggest --no-dev | |
- name: Cleanup unnecessary files | |
run: rm -rf .git .github .editorconfig .prettierrc .gitattributes .gitignore assets composer.json composer.lock package.json yarn.lock webpack.mix.js tailwind.config.js | |
- name: Get the version | |
id: get_version | |
run: echo ::set-output name=version::${GITHUB_REF/refs\/tags\//} | |
shell: bash | |
- name: Create subfolder | |
run: mkdir acf-phone-number && mv ./* acf-phone-number/ 2>/dev/null | |
continue-on-error: true | |
- name: Create distributable zip file | |
uses: montudor/[email protected] | |
with: | |
args: zip -qq -r9 acf-phone-number.zip acf-phone-number | |
- name: Upload zip as release asset | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: acf-phone-number.zip | |
asset_name: acf-phone-number-${{ steps.get_version.outputs.version }}.zip | |
tag: ${{ github.ref }} | |
overwrite: true |