Hide Apple Pay saved token from classic checkout #1031
This file contains hidden or 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: Build and distribute | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| PACKAGE_VERSION: | |
| description: 'Package Version' | |
| required: false | |
| push: | |
| branches: [ 'dev/**' ] | |
| paths: | |
| - 'api/**' | |
| - 'lib/**' | |
| - 'src/**' | |
| - 'modules/**' | |
| - '.distignore' | |
| - 'composer.*' | |
| - 'package*' | |
| - 'readme.txt' | |
| - 'webpack.config.js' | |
| - '*.php' | |
| 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 }} | |
| NPM_REGISTRY_TOKEN: ${{ secrets.DEPLOYBOT_GITHUB_TOKEN_PACKAGES }} | |
| with: | |
| PACKAGE_VERSION: ${{ inputs.PACKAGE_VERSION }} | |
| NODE_VERSION: 22 |