20 lines
410 B
YAML
20 lines
410 B
YAML
name: ▲ Deploy
|
|
|
|
on:
|
|
workflow_run:
|
|
workflows:
|
|
- 🧪 Code checking
|
|
- 🎉 Release
|
|
types:
|
|
- completed
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
deploy:
|
|
if: ${{ github.event.workflow_run.conclusion == 'success' && github.repository == 'loreddev/loredmarkdown' }}
|
|
uses: loreddev/.github/.github/workflows/vercel-deploy.yml@main
|
|
secrets: inherit
|
|
with:
|
|
production: true
|