Use reusable workflow for building package

This commit is contained in:
Alex P 2023-08-25 11:36:17 +03:00
parent 7571a1cea8
commit 84bdea35e2
No known key found for this signature in database
GPG key ID: 54487A734A204D71
2 changed files with 34 additions and 45 deletions

28
.distignore Normal file
View file

@ -0,0 +1,28 @@
.distignore
.editorconfig
.gitattributes
.gitignore
.ddev
.git*
.phpstorm*
.idea
*.env*
.psalm*
tests
phpcs.xml*
psalm*.xml*
phpunit.xml*
.phpunit.result.cache
resources
*.lock
webpack.config.js
wp-cli.yml
ngrok.yml
composer.json
package.json
package-lock.json
patchwork.json
.babelrc
README.md
wordpress_org_assets
.DS_Store

View file

@ -7,50 +7,11 @@ on:
description: 'Package version'
required: false
type: string
filePrefix:
description: 'File prefix'
required: false
type: string
jobs:
package:
runs-on: ubuntu-latest
env:
PACKAGE_VERSION: ${{ github.event.inputs.packageVersion }}
FILENAME: woocommerce-paypal-payments
name: Build package
steps:
- uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 7.2
- name: Fix plugin version input # Add the version number if only suffix entered
run: echo "PACKAGE_VERSION=$(sed -nE '/Version:/s/.* ([0-9.]+).*/\1/p' woocommerce-paypal-payments.php)-$PACKAGE_VERSION" >> $GITHUB_ENV
if: env.PACKAGE_VERSION && !contains(env.PACKAGE_VERSION, '.')
- name: Set plugin version header
run: 'sed -Ei "s/Version: .*/Version: ${PACKAGE_VERSION}/g" woocommerce-paypal-payments.php'
if: env.PACKAGE_VERSION
- name: Build
run: yarn build
- name: Unzip # GH currently always zips, so if we upload a zip we get a zip inside a zip
run: unzip woocommerce-paypal-payments.zip -d dist
- name: Set file name
env:
FILE_PREFIX: ${{ github.event.inputs.filePrefix }}
run: echo "FILENAME=$FILE_PREFIX-$FILENAME" >> $GITHUB_ENV
if: github.event.inputs.filePrefix
- name: Upload
uses: actions/upload-artifact@v3
with:
name: ${{ env.FILENAME }}
path: dist/
create_archive:
uses: inpsyde/reusable-workflows/.github/workflows/build-plugin-archive.yml@main
with:
PHP_VERSION: 7.2
PLUGIN_MAIN_FILE: ./woocommerce-paypal-payments.php
PLUGIN_VERSION: ${{ inputs.packageVersion }}