We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 541d9bd commit 40e5c19Copy full SHA for 40e5c19
1 file changed
.github/workflows/store.yml
@@ -15,9 +15,16 @@ jobs:
15
validatePlugin:
16
if: startsWith(github.ref, 'refs/tags/') != true
17
name: Check for Store compliance
18
- container: ghcr.io/friendsofshopware/shopware-cli:0.1.37
19
runs-on: ubuntu-latest
20
steps:
+ - name: Download shopware-cli
21
+ run: |
22
+ git config --global --add safe.directory $(pwd)
23
+ wget -q https://github.com/FriendsOfShopware/shopware-cli/releases/download/${SHOPWARE_CLI_VERSION}/shopware-cli_${SHOPWARE_CLI_VERSION}_Linux_x86_64.tar.gz
24
+ tar -zxf shopware-cli_*.tar.gz shopware-cli
25
+ mv shopware-cli /usr/bin/shopware-cli
26
+ rm shopware-cli_*.tar.gz
27
+
28
- name: Checkout
29
uses: actions/checkout@v2.3.1
30
with:
0 commit comments