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

Added concurrency to mkdocs workflow #151

Merged
merged 7 commits into from
Apr 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ If applicable, add screenshots to help explain your problem.
- OS: [e.g. Windows 11]
- Browser: [e.g. chrome, safari]
- PineSAM Version: [e.g. 1.0.8]
- IronOS build: [e.g. 2.20.EB5D5EA]
- IronOS build/date: [e.g. 2.20.EB5D5EA, 15-02-23]

**Additional context**
Add any other context about the problem here.
5 changes: 4 additions & 1 deletion .github/workflows/docs-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
- '/docs'
- '/mkdocs.yml'
workflow_dispatch:
concurrency:
group: "docs"
cancel-in-progress: true
jobs:
deploy:
runs-on: ubuntu-latest
Expand All @@ -22,4 +25,4 @@ jobs:
- run: pip install mkdocs-git-authors-plugin
- run: pip install mkdocs-enumerate-headings-plugin
- run: pip install mkdocs-glightbox
- run: mkdocs gh-deploy --force
- run: mkdocs gh-deploy --force
87 changes: 87 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,92 @@
# Changelog

## v1.12.13

* fix: instructions, docs, wiki (#144)


fix badge links

* Update Readme.md

* fix: updated instructions

fix: closes issue https://github.com/builder555/PineSAM/issues/136

* fix: instructions

fix: instructions

* fix: links

fix: links

* Update Readme.md

* fix: add work HUD reference image

fix: add work HUD detailed reference image

* fix: added working 128 firmware

fix: added link to working 128 UUID firmware. old beta ironOS causes main_server terminal crash

* Update Readme.md

* fix: readme doc

fix: readme doc

* fix: typo readme

fix: typo readme [5f461fd](https://github.com/builder555/PineSAM/commit/5f461fd8aee172f85f4690e821b0ae87bfe353ae)
* fix: error from wait=process, instruction docs (#149)

fix badge links

* Update Readme.md

* fix: updated instructions

fix: closes issue https://github.com/builder555/PineSAM/issues/136

* fix: instructions

fix: instructions

* fix: links

fix: links

* Update Readme.md

* fix: add work HUD reference image

fix: add work HUD detailed reference image

* fix: added working 128 firmware

fix: added link to working 128 UUID firmware. old beta ironOS causes main_server terminal crash

* Update Readme.md

* fix: readme doc

fix: readme doc

* fix: typo readme

fix: typo readme

* fix: wait-process error on windows

fix: this closes ticket for https://github.com/builder555/PineSAM/issues/148
fix of Wait-process causing error in terminal window start.ps1 [ed98d62](https://github.com/builder555/PineSAM/commit/ed98d6207deb6c9a4b36f1f91d30ed30a6771721)

## v1.12.11

* fix: broken if statement [e484f67](https://github.com/builder555/PineSAM/commit/e484f67929eb198925df3e35f6c45edaff582d2c)

## v1.12.10

* Use mkdocs as documentation software instead of GitHub wiki (#129)
Expand Down