https://github.com/shopware/shopware-cli-action
GitHub Action to Install Shopware CLI
https://github.com/shopware/shopware-cli-action
Last synced: 9 months ago
JSON representation
GitHub Action to Install Shopware CLI
- Host: GitHub
- URL: https://github.com/shopware/shopware-cli-action
- Owner: shopware
- License: mit
- Created: 2023-06-21T20:39:32.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-09-04T05:07:03.000Z (9 months ago)
- Last Synced: 2025-09-04T07:06:14.797Z (9 months ago)
- Language: TypeScript
- Size: 5.94 MB
- Stars: 2
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Shopware CLI GitHub Action
Easily install the [Shopware CLI](https://github.com/shopware/shopware-cli) in your GitHub Actions workflows. Ready-to-use for building and packaging Shopware extensions in your CI pipelines.
## Prerequisites
- A GitHub repository using GitHub Actions.
- Recommended: Use on a Linux runner (e.g., `ubuntu-latest`).
## Setup
Create a file in your repository (e.g., `.github/workflows/shopware-cli.yml`) with the following contents:
```yaml
name: shopware-cli
on:
pull_request:
push:
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install Shopware CLI
uses: shopware/shopware-cli-action@v1
- name: Build and Package Extension
run: shopware-cli extension zip .
```
## More Information
For more Shopware CLI documentation, visit [our developer docs](https://developer.shopware.com/docs/products/cli/).