Merge pull request #1 from alex2276564/dependabot/github_actions/acti… #4
This file contains 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 FOSSManualPayment | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Create directories | |
run: mkdir -p library/Payment/Adapter data/assets/gateways | |
- name: Move FOSSManualPayment.php | |
run: mv FOSSManualPayment.php library/Payment/Adapter/ | |
- name: Move FOSSManualPayment.png | |
run: mv FOSSManualPayment.png data/assets/gateways/ | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: FOSSManualPayment | |
path: FOSSManualPayment |