Merge pull request #8 from VisionEval/main #81
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: Copy Book To VE.Org | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
copy-book-dir: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: main | |
- name: Copy contents to VisionEval/VisionEval.github.io | |
uses: cpina/[email protected] | |
env: | |
API_TOKEN_GITHUB: ${{ secrets.docs_sync }} | |
with: | |
source-directory: 'docs/' | |
target-directory: 'docs/' | |
destination-github-username: 'VisionEval' | |
destination-repository-name: 'VisionEval.github.io' | |
user-email: '[email protected]' | |
target-branch: 'main' |