ci: run website deployment after the release is complete

This commit is contained in:
Sam Marks 2022-12-08 11:49:31 -05:00
parent 42aa05f943
commit e30a858df7
No known key found for this signature in database
2 changed files with 11 additions and 3 deletions

View file

@ -78,3 +78,14 @@ jobs:
with:
credentialJson: ${{ secrets.PUB_CREDENTIAL_JSON }}
relativePath: ./packages/iconoir-flutter
- name: Trigger Website Workflow
uses: actions/github-script@v6
with:
script: |
github.rest.actions.createWorkflowDispatch({
owner: context.repo.owner,
repo: context.repo.repo,
workflow_id: 'website.yaml',
ref: 'main',
})

View file

@ -11,9 +11,6 @@ concurrency:
on:
workflow_dispatch: {}
push:
tags:
- 'v*'
jobs:
build: