docs: update vite documentation for migrating the custom webpack conf… #456
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
# This workflow is triggered whenever the main branch is updated | |
name: Deploy to DevHub | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
trigger-deployment: | |
name: Trigger deployment | |
runs-on: ubuntu-latest | |
steps: | |
- uses: octokit/[email protected] | |
name: Trigger deployment | |
with: | |
route: POST /repos/{owner}/{repo}/actions/workflows/{workflow_id}/dispatches | |
owner: shopware | |
repo: developer-portal | |
ref: main | |
workflow_id: checkout-test-build-deploy.yml | |
env: | |
GITHUB_TOKEN: ${{ secrets.DEV_HUB_PERSONAL_ACCESS_TOKEN }} |