-
Notifications
You must be signed in to change notification settings - Fork 54
54 lines (46 loc) · 1.68 KB
/
sync_docs.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: Synchronize documentation to the website
on:
push:
branches:
- 'main'
- '2.2.x'
jobs:
upload:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: oraNod/[email protected]
with:
docs_path: documentation/asciidoc/titles
- name: Clone infinispan.github.io
uses: actions/checkout@master
with:
repository: infinispan/infinispan.github.io
ref: master
path: infinispan.github.io
- if: github.ref == 'refs/heads/main'
name: Copy docs to main
run: |
cp -r documentation/asciidoc/titles/operator.html infinispan.github.io/docs/infinispan-operator/main
- if: github.ref == 'refs/heads/2.2.x'
name: Copy docs to main
run: |
cp -r documentation/asciidoc/titles/operator.html infinispan.github.io/docs/infinispan-operator/2.2.x
- name: Commit files
run: |
cd infinispan.github.io
git config -l | grep 'http\..*\.extraheader' | cut -d= -f1 | xargs -L1 git config --unset-all
git config --global user.email "[email protected]"
git config --global user.name "Infinispan"
git add . --all
git diff-index --quiet HEAD || git commit -m "Synchronized Operator docs from ${{ github.ref }}"
- name: Push to the community site
uses: cpina/github-action-push-to-another-repository@main
env:
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }}
with:
source-directory: 'infinispan.github.io'
destination-github-username: 'infinispan'
destination-repository-name: 'infinispan.github.io'
user-email: [email protected]
target-branch: master