Skip to content

fix pat authentication in actions #1

fix pat authentication in actions

fix pat authentication in actions #1

Workflow file for this run

name: Update DSPy Docs
on:
push:
branches:
- main
paths:
- 'docs/**'
pull_request:
paths:
- 'docs/**'
jobs:
build-test:
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install dependencies and build
run: |
cd docs
npm install
npm run build
update-docs-subtree:
if: github.event_name == 'push'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Git
run: |
git config user.name github-actions
git config user.email [email protected]
- name: Push docs subtree
env:
GH_PAT: ${{ secrets.GH_PAT }}
run: |
git remote add docs-repo https://krypticmouse:${GH_PAT}@github.com/krypticmouse/dspy-docs.git
git subtree push --prefix=docs docs-repo master