PIPRES-754: Fix Apple Pay Direct address and orphaned records bugs #774
Workflow file for this run
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: Deploy | |
| on: | |
| pull_request: | |
| types: [closed] | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: build | |
| # IF YOU EDIT THIS, DON'T FORGET TO EDIT release.yml | |
| run: | | |
| composer install --no-dev --optimize-autoloader --classmap-authoritative | |
| composer dump-autoload --no-dev --optimize --classmap-authoritative | |
| npm install --quiet --no-progress | |
| rm -rf node_modules | |
| rm -rf .git | |
| rm -rf .github | |
| rm -rf tests | |
| rm -rf cypress | |
| rm -rf .docker | |
| rm -rf vendor/segmentio/analytics-php/.buildscript | |
| rm -rf vendor/segmentio/analytics-php/.circleci | |
| rm -rf vendor/segmentio/analytics-php/.github | |
| mkdir mollie | |
| rsync -Rr ./ ./mollie | |
| shopt -s extglob | |
| rm -r !(mollie) | |
| find . -maxdepth 1 -type f -exec rm "{}" \; | |
| cd mollie && rm -rf mollie | |
| - name: Archive production artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: mollie | |
| path: | | |
| . |