[polaris.shopify.com] Adds icon and icon-only examples to Button
do…
#759
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
name: Trigger deploy of polaris.shopify.com | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'polaris.shopify.com/**' | |
jobs: | |
trigger-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Trigger deploy polaris.shopify.com | |
uses: actions/github-script@v6 | |
with: | |
github-token: ${{ secrets.SHOPIFY_GH_ACCESS_TOKEN }} | |
script: | | |
await github.rest.actions.createWorkflowDispatch({ | |
owner: "shopify", | |
repo: "polaris-site-prod-kit", | |
workflow_id: "build-and-deploy.yml", | |
ref: "main", | |
}); |