fix: Remove broken link for node token provider example (#449) #169
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: Publish Docusaurus | |
on: | |
push: | |
paths: | |
- 'docusaurus/video/docusaurus/**' | |
- '.github/workflows/docusaurus-deploy.yml' | |
jobs: | |
push_docusaurus: | |
name: Publish docusaurus docs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node 18 | |
uses: actions/[email protected] | |
with: | |
node-version: 18 | |
- name: push | |
uses: GetStream/push-stream-chat-docusaurus-action@main | |
with: | |
target-branch: ${{ github.ref == 'refs/heads/main' && 'main' || 'staging' }} | |
cli-target-branch: ${{ github.ref == 'refs/heads/main' && 'production' || 'staging' }} | |
destination-repository-name: 'stream-video-docusaurus' | |
source-directory: 'docusaurus/video/docusaurus' | |
env: | |
DOCUSAURUS_GH_TOKEN: ${{ secrets.DOCUSAURUS_GH_TOKEN }} |