Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V1.11 rc #27

Merged
merged 45 commits into from
Mar 2, 2024
Merged
Changes from 1 commit
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
aa682ba
Add example of simulator control contents for sv
mkosunen Oct 31, 2023
cbc6818
Add documentation build CI routine
mkosunen Jan 22, 2024
1e0f3f5
Update CI build routine
mkosunen Jan 22, 2024
58f3aaf
Trial
mkosunen Jan 22, 2024
972233a
Trial2
mkosunen Jan 22, 2024
8331624
Use directory instead of link for docs
mkosunen Jan 22, 2024
c7be6c6
Update
mkosunen Jan 22, 2024
46e2fb7
Cleanup docs
mkosunen Jan 22, 2024
c5a0894
Re-add .nojekyll
mkosunen Jan 22, 2024
5a1a091
Update docs
mkosunen Jan 22, 2024
021d03d
Update
mkosunen Jan 22, 2024
c45a5d6
Fixup
mkosunen Jan 22, 2024
186f057
Fixup
mkosunen Jan 22, 2024
a4064b3
Fixup
mkosunen Jan 22, 2024
a3f3881
Fixup
mkosunen Jan 22, 2024
a1b8c4b
Continuous Integration documentation update
Jan 22, 2024
d7f2c2c
Testupdate
mkosunen Jan 22, 2024
7de637a
Back to link
mkosunen Jan 22, 2024
4cb9f2a
Back to link
mkosunen Jan 22, 2024
fd45feb
Continuous Integration documentation update
Jan 22, 2024
87edb0c
Revert to docs directory from link
mkosunen Jan 22, 2024
1f2776a
Merge branch 'v1.11_RC' of github.com:TheSystemDevelopmentKit/inverte…
mkosunen Jan 22, 2024
6f763ff
Add empty docs
mkosunen Jan 22, 2024
b331a7d
Continuous Integration documentation update
Jan 22, 2024
cc0ab9c
Create static.yml
mkosunen Jan 22, 2024
406776d
Merge pull request #28 from TheSystemDevelopmentKit/mkosunen-patch-1
mkosunen Jan 22, 2024
394eec5
Modify git add
mkosunen Jan 22, 2024
350fe17
Modify git add
mkosunen Jan 22, 2024
3ef9e00
Update workflow
mkosunen Jan 22, 2024
fb2f71c
Continuous Integration documentation update
Jan 22, 2024
22d6b43
Update workflow
mkosunen Jan 22, 2024
b7dd06c
Merge branch 'v1.11_RC' of github.com:TheSystemDevelopmentKit/inverte…
mkosunen Jan 22, 2024
609a726
Update workflow
mkosunen Jan 22, 2024
1759bd4
Update workflow
mkosunen Jan 22, 2024
ea7a7f3
Update workflow
mkosunen Jan 22, 2024
21e5dfa
Continuous Integration documentation update
Jan 22, 2024
ebe1f39
Update workflow
mkosunen Jan 22, 2024
3e886be
Fixup
mkosunen Jan 22, 2024
076666a
Continuous Integration documentation update
Jan 22, 2024
801a277
Update workflow
mkosunen Jan 22, 2024
f726181
Continuous Integration documentation update
Jan 22, 2024
96709d8
Update only html
mkosunen Jan 22, 2024
67297d4
Merge branch 'v1.11_RC' of github.com:TheSystemDevelopmentKit/inverte…
mkosunen Jan 22, 2024
b1836e3
Fixup
mkosunen Jan 22, 2024
e374383
Prevent storing pickle
mkosunen Jan 22, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update workflow
mkosunen committed Jan 22, 2024
commit 609a7260d7d6b9d0e125dd446ab6c6008ce12163
11 changes: 8 additions & 3 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -23,18 +23,23 @@ jobs:
name: Build documentation
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Documentation builder action
run: cd doc && make html && cd .. && rm -rf ./docs && mv doc/build/html ./docs/ && touch ./docs/.nojekyll && touch ./docs/.gitignore
- name: GIT commit and push documentation
env:
CI_COMMIT_MESSAGE: Continuous Integration documentation update
CI_COMMIT_AUTHOR: Continuous Integration
run: git config --global --add safe.directory /__w/inverter/inverter && git config --global user.name "${{ env.CI_COMMIT_AUTHOR }}" && git config --global user.email "${GITHUB_ACTOR}@noreply.github.com" && git add docs && git commit -m "${{ env.CI_COMMIT_MESSAGE }}" && git push
run:
git config --global --add safe.directory /__w/inverter/inverter
git config --global user.name "${{ env.CI_COMMIT_AUTHOR }}"
git config --global user.email "${GITHUB_ACTOR}@noreply.github.com"
git add docs && git commit -m "${{ env.CI_COMMIT_MESSAGE }}" && git push || echo "Nothing to update"

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages

pages_deploy:
needs: doc_build_job
permissions:
contents: read
pages: write
@@ -52,7 +57,7 @@ jobs:
uses: actions/upload-pages-artifact@v3
with:
# Upload entire repository
path: '.'
path: './docs'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4