RATESWSX-305: remove js-file built by sw6.6 & readd js-file built by … #101
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
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" |