RATESWSX-321: fix deletion of ratepay-data if payment-method got swit… #120
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
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- '*' | |
- '*/*' | |
permissions: | |
contents: read | |
jobs: | |
build: | |
name: Build installable packages | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: "1.23" | |
cache: true | |
check-latest: true | |
- run: go install github.com/FriendsOfShopware/[email protected] | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- run: shopware-cli extension zip . --disable-git --release | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: Module bundles | |
path: "*.zip" |