Makes us use release dmdoc

This commit is contained in:
AffectedArc07
2021-09-13 22:01:40 +01:00
parent da18340bc4
commit c7b10e9fd9
5 changed files with 13 additions and 4 deletions
+5 -3
View File
@@ -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
+1 -1
View File
@@ -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
+1
View File
@@ -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"
+6
View File
@@ -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
Binary file not shown.