RATESWSX-312: installment: fix issue that if payment-type is not avai… #82
Workflow file for this run
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@v4 | |
- run: go install github.com/FriendsOfShopware/shopware-cli@latest | |
- 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" |