We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2420a2 commit 4d786b8Copy full SHA for 4d786b8
.github/workflows/store-info.yml
@@ -0,0 +1,25 @@
1
+name: Update Store Info
2
+on:
3
+ push:
4
+ tags:
5
+ - '*'
6
+ paths:
7
+ - 'src/Resources/store/**'
8
+ - '.shopware-extension.yml'
9
+ - 'composer.json'
10
+ workflow_dispatch:
11
+
12
+jobs:
13
+ update-store-info:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - name: Checkout code
17
+ uses: actions/checkout@v4
18
+ - name: Install shopware-cli
19
+ uses: shopware/shopware-cli-action@v1
20
+ - name: Build
21
+ shell: bash
22
+ run: shopware-cli account producer extension info push .
23
+ env:
24
+ SHOPWARE_CLI_ACCOUNT_EMAIL: ${{ secrets.ACCOUNT_USER }}
25
+ SHOPWARE_CLI_ACCOUNT_PASSWORD: ${{ secrets.ACCOUNT_PASSWORD }}
0 commit comments