diff --git a/.github/workflows/generate_autodoc.yml b/.github/workflows/generate_autodoc.yml index 44eb69eb570..d0d65a6f8ce 100644 --- a/.github/workflows/generate_autodoc.yml +++ b/.github/workflows/generate_autodoc.yml @@ -2,7 +2,8 @@ name: Generate Documentation on: schedule: - - cron: "0 0 * * *" # Every day at the very start of the day + - cron: "0 0 * * *" # Every day at the very start of the day. Except it happens an hour and a half later because actions backlog + workflow_dispatch: jobs: generate_docs: @@ -14,10 +15,11 @@ jobs: with: fetch-depth: 1 ref: master - + - name: 'Install DMDOC' + run: bash tools/ci/install_dmdoc.sh - name: 'Generate Documentation' run: | - ./tools/github-actions/doc-generator + ~/dmdoc touch dmdoc/.nojekyll # Nojekyll is important to disable jeykll syntax, which can mess with files that start with underscores diff --git a/_build_dependencies.sh b/_build_dependencies.sh index 3aabf9e3758..61b02c2ca10 100644 --- a/_build_dependencies.sh +++ b/_build_dependencies.sh @@ -1,6 +1,6 @@ # This file has all the information on what versions of libraries are thrown into the code # For dreamchecker -export SPACEMANDMM_TAG=suite-1.7 +export SPACEMANDMM_TAG=suite-1.7.1 # For TGUI export NODE_VERSION=12 # Byond Major diff --git a/code/world.dm b/code/world.dm index 40f4268ef5a..9b4b94a0c3e 100644 --- a/code/world.dm +++ b/code/world.dm @@ -8,3 +8,4 @@ view = "15x15" cache_lifespan = 0 //stops player uploaded stuff from being kept in the rsc past the current session fps = 20 // If this isnt hard-defined, anything relying on this variable before world load will cry a lot + name = "Paradise Station 13" diff --git a/tools/ci/install_dmdoc.sh b/tools/ci/install_dmdoc.sh new file mode 100644 index 00000000000..9e9b29caf9d --- /dev/null +++ b/tools/ci/install_dmdoc.sh @@ -0,0 +1,6 @@ +#!/bin/bash +source _build_dependencies.sh + +wget -O ~/dmdoc "https://github.com/SpaceManiac/SpacemanDMM/releases/download/$SPACEMANDMM_TAG/dmdoc" +chmod +x ~/dmdoc +~/dmdoc --version diff --git a/tools/github-actions/doc-generator b/tools/github-actions/doc-generator deleted file mode 100755 index ce0b4fa25f5..00000000000 Binary files a/tools/github-actions/doc-generator and /dev/null differ