Skip to content

Commit 02fc55c

Browse files
authored
Merge pull request #2454 from opencobra/develop
Develop
2 parents 3ccb9f1 + de48877 commit 02fc55c

File tree

2,642 files changed

+38943
-3973141
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,642 files changed

+38943
-3973141
lines changed

.github/workflows/UpdateContributors.yml

+4-5
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,14 @@ name: Update Contributors list
33
on:
44
push:
55
branches:
6-
- develop
6+
- master
77

88
jobs:
99
build:
1010
runs-on: ubuntu-latest
1111

1212
steps:
1313
- uses: actions/checkout@v3
14-
1514
- name: Set up Python 3.10
1615
uses: actions/setup-python@v3
1716
with:
@@ -32,12 +31,12 @@ jobs:
3231
run: |
3332
python GenerateContributorsHTML.py
3433
35-
- name: Deploy to docs
34+
- name: Deploy to gh-pages/stable
3635
uses: peaceiris/actions-gh-pages@v3
3736
with:
3837
github_token: ${{ secrets.GITHUB_TOKEN }}
3938
publish_dir: ./documentation/source/Contributions/contributors
40-
publish_branch: develop
39+
publish_branch: gh-pages
4140
keep_files: true
42-
destination_dir: docs
41+
destination_dir: stable
4342
commit_message: "Update Contributors (Automatic Workflow)"

.github/workflows/UpdateFunctionDocs.yml

+7-8
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,14 @@ name: Update function docs
33
on:
44
push:
55
branches:
6-
- develop
6+
- master
77

88
jobs:
99
build:
1010
runs-on: ubuntu-latest
1111

1212
steps:
1313
- uses: actions/checkout@v3
14-
1514
- name: Set up Python 3.10
1615
uses: actions/setup-python@v3
1716
with:
@@ -50,26 +49,26 @@ jobs:
5049
uses: JamesIves/github-pages-deploy-action@v4
5150
with:
5251
folder: ./documentation/build/html/modules
53-
branch: develop
54-
target-folder: docs/modules
52+
branch: gh-pages
53+
target-folder: stable/modules
5554
commit-message: "update Function Docs (Automatic Workflow)"
5655

5756
- name: Deploy the citations page
5857
uses: peaceiris/actions-gh-pages@v3
5958
with:
6059
github_token: ${{ secrets.GITHUB_TOKEN }}
6160
publish_dir: ./documentation/source/Citations
62-
publish_branch: develop
61+
publish_branch: gh-pages
6362
keep_files: true
64-
destination_dir: docs
63+
destination_dir: stable
6564
commit_message: "update Function Docs (Automatic Workflow)"
6665

6766
- name: Deploy the citations static page
6867
uses: peaceiris/actions-gh-pages@v3
6968
with:
7069
github_token: ${{ secrets.GITHUB_TOKEN }}
7170
publish_dir: ./documentation/build/html/_static
72-
publish_branch: develop
71+
publish_branch: gh-pages
7372
keep_files: true
74-
destination_dir: docs/_static
73+
destination_dir: stable/_static
7574
commit_message: "update Function Docs (Automatic Workflow)"

.github/workflows/UpdateTutorialIndex.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Extract HTML Info
22

33
on:
44
push:
5-
branches: [develop]
5+
branches: gh-pages
66
paths:
77
- '**.html'
88

@@ -15,6 +15,7 @@ jobs:
1515
with:
1616
token: ${{ secrets.GITHUB_TOKEN }}
1717
fetch-depth: 0
18+
ref: gh-pages
1819

1920
- name: Check Commit Message
2021
id: check_msg
@@ -45,7 +46,7 @@ jobs:
4546
changed_files=$(git diff --name-only HEAD~1 HEAD | grep '\.html' | tr '\n' ' ')
4647
for file in $changed_files; do
4748
echo "Processing: $file"
48-
python ./docs/extract_info.py $file
49+
python ./stable/extract_info.py $file
4950
done
5051
5152
- name: Commit and Push New File
@@ -55,4 +56,4 @@ jobs:
5556
git config user.email "github-actions[bot]@users.noreply.github.com"
5657
git add .
5758
git commit -m "Update Tutorial (Automatic Workflow)" || echo "No changes to commit"
58-
git push origin master
59+
git push

.github/workflows/testAllCI_step2.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
echo "PR_NUMBER=$PR_NUMBER" >> $GITHUB_ENV
3737
3838
- name: Publish Test Report
39-
uses: ctrf-io/[email protected].6
39+
uses: ctrf-io/[email protected].7
4040
with:
4141
report-path: 'artifacts/ctrf-report.json'
4242
community-report: true

docs/.buildinfo

-4
This file was deleted.

docs/.gitmodules

-85
This file was deleted.

docs/CITools/CheckTutorials.py.py

-73
This file was deleted.

docs/CITools/checkGhPages.py

-92
This file was deleted.

0 commit comments

Comments
 (0)