Skip to content

📚 Deploy

📚 Deploy #28

Workflow file for this run

name: 📚 Deploy
on:
workflow_run:
workflows: [ 📦 Release ]
types: [ completed ]
branches: [ master ]
jobs:
deploy:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Download artifact
uses: dawidd6/action-download-artifact@v2
with:
workflow: release.yml
workflow_conclusion: success
- name: Extract artifact
run: tar -xvf artifacts/docs.tar
- name: Deploy
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: dist/apps/docs/browser