Browse Source
Move Online Doc Build to Release Workflow
The build process for the online documentation site has not changed, it was just moved to the Release workflow so it will be a little more stable.
pull/569/head
v3.6.0-dev.2
Wayne Warthen
8 months ago
No known key found for this signature in database
GPG Key ID: 8B34ED29C07EEB0A
4 changed files with
17 additions and
17 deletions
-
.github/workflows/commit.yml
-
.github/workflows/release.yml
-
Source/ver.inc
-
Source/ver.lib
|
|
@ -41,21 +41,6 @@ jobs: |
|
|
name: RomWBW-${{env.COMMIT_REF}}-Linux |
|
|
name: RomWBW-${{env.COMMIT_REF}}-Linux |
|
|
path: . |
|
|
path: . |
|
|
|
|
|
|
|
|
- name: Build Docs |
|
|
|
|
|
run: | |
|
|
|
|
|
export TZ='America/Los_Angeles' |
|
|
|
|
|
sudo apt-get install gpp pandoc |
|
|
|
|
|
pip install mkdocs |
|
|
|
|
|
make -C Source/Doc deploy_mkdocs |
|
|
|
|
|
mkdocs build -f Source/Doc/mkdocs.yml |
|
|
|
|
|
|
|
|
|
|
|
- name: Deploy Docs |
|
|
|
|
|
uses: peaceiris/actions-gh-pages@v4 |
|
|
|
|
|
if: github.ref == 'refs/heads/master' |
|
|
|
|
|
with: |
|
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }} |
|
|
|
|
|
publish_dir: Source/Doc/site |
|
|
|
|
|
|
|
|
|
|
|
buildMacOS: |
|
|
buildMacOS: |
|
|
runs-on: macOS-latest |
|
|
runs-on: macOS-latest |
|
|
|
|
|
|
|
|
|
|
|
@ -52,6 +52,21 @@ jobs: |
|
|
title: "${{env.TITLE}} ${{github.ref_name}}" |
|
|
title: "${{env.TITLE}} ${{github.ref_name}}" |
|
|
files: | |
|
|
files: | |
|
|
RomWBW-${{github.ref_name}}-Package.zip |
|
|
RomWBW-${{github.ref_name}}-Package.zip |
|
|
|
|
|
|
|
|
|
|
|
- name: Build Docs |
|
|
|
|
|
run: | |
|
|
|
|
|
export TZ='America/Los_Angeles' |
|
|
|
|
|
sudo apt-get install gpp pandoc |
|
|
|
|
|
pip install mkdocs |
|
|
|
|
|
make -C Source/Doc deploy_mkdocs |
|
|
|
|
|
mkdocs build -f Source/Doc/mkdocs.yml |
|
|
|
|
|
|
|
|
|
|
|
- name: Deploy Docs |
|
|
|
|
|
uses: peaceiris/actions-gh-pages@v4 |
|
|
|
|
|
if: github.ref == 'refs/heads/master' |
|
|
|
|
|
with: |
|
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }} |
|
|
|
|
|
publish_dir: Source/Doc/site |
|
|
|
|
|
|
|
|
# - name: Upload Package Archive |
|
|
# - name: Upload Package Archive |
|
|
# uses: AButler/upload-release-assets@v2.0.2 |
|
|
# uses: AButler/upload-release-assets@v2.0.2 |
|
|
|
|
|
@ -2,7 +2,7 @@ |
|
|
#DEFINE RMN 6 |
|
|
#DEFINE RMN 6 |
|
|
#DEFINE RUP 0 |
|
|
#DEFINE RUP 0 |
|
|
#DEFINE RTP 0 |
|
|
#DEFINE RTP 0 |
|
|
#DEFINE BIOSVER "3.6.0-dev.1" |
|
|
|
|
|
|
|
|
#DEFINE BIOSVER "3.6.0-dev.2" |
|
|
#define rmj RMJ |
|
|
#define rmj RMJ |
|
|
#define rmn RMN |
|
|
#define rmn RMN |
|
|
#define rup RUP |
|
|
#define rup RUP |
|
|
|
|
|
@ -3,5 +3,5 @@ rmn equ 6 |
|
|
rup equ 0 |
|
|
rup equ 0 |
|
|
rtp equ 0 |
|
|
rtp equ 0 |
|
|
biosver macro |
|
|
biosver macro |
|
|
db "3.6.0-dev.1" |
|
|
|
|
|
|
|
|
db "3.6.0-dev.2" |
|
|
endm |
|
|
endm |
|
|
|