Skip to content

Update README.md

Update README.md #7

Workflow file for this run

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/
- name: Create release archive
run: zip -r FOSSManualPayment.zip library data
- uses: actions/upload-artifact@v4
with:
name: FOSSManualPayment
path: FOSSManualPayment.zip