mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-30 05:00:51 +08:00
56 lines
1.6 KiB
YAML
56 lines
1.6 KiB
YAML
name: Build package
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
packageVersion:
|
|
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@0f7f1d08e3e32076e51cae65eb0b0c871405b16e # v2.34.1
|
|
with:
|
|
php-version: 7.4
|
|
|
|
- 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@v4
|
|
with:
|
|
name: ${{ env.FILENAME }}
|
|
path: dist/
|