Skip to content

Commit

Permalink
[Doc] sync files to home site (#666)
Browse files Browse the repository at this point in the history
feat: sync file to home page

Co-authored-by: quanzheng <[email protected]>
  • Loading branch information
theweipeng and quanzheng authored Jul 16, 2023
1 parent 454e3d3 commit 165d6e5
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
fury-project/fury-sites@main:
- source: docs/guide/
dest: docs/guide/

- source: docs/benchmarks/
dest: public/benchmarks/
18 changes: 18 additions & 0 deletions .github/workflows/sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Sync Files

on:
push:
branches:
- main

jobs:
sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: sync
uses: BetaHuhn/repo-file-sync-action@v1
with:
GH_PAT: ${{ secrets.GH_PAT }}
SKIP_PR: true

0 comments on commit 165d6e5

Please sign in to comment.