woocommerce-paypal-payments/.github/workflows/build-and-distribute.yml
2025-12-11 14:32:08 +02:00

23 lines
708 B
YAML

name: Build and distribute
on:
workflow_dispatch:
inputs:
PACKAGE_VERSION:
description: 'Package Version'
required: false
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-and-distribute:
uses: inpsyde/reusable-workflows/.github/workflows/build-and-distribute.yml@main
secrets:
GITHUB_USER_EMAIL: ${{ secrets.DEPLOYBOT_EMAIL }}
GITHUB_USER_NAME: ${{ secrets.DEPLOYBOT_USER }}
GITHUB_USER_SSH_KEY: ${{ secrets.DEPLOYBOT_SSH_PRIVATE_KEY }}
GITHUB_USER_SSH_PUBLIC_KEY: ${{ secrets.DEPLOYBOT_SSH_PUBLIC_KEY }}
with:
PACKAGE_VERSION: ${{ inputs.PACKAGE_VERSION }}
NODE_VERSION: 22