Autowiki #789
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Autowiki | |
on: | |
schedule: | |
- cron: "5 4 * * *" | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
autowiki: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Check for AUTOWIKI_USERNAME" | |
id: secrets_set | |
env: | |
ENABLER_SECRET: ${{ secrets.AUTOWIKI_USERNAME }} | |
run: | | |
unset SECRET_EXISTS | |
if [ -n "$ENABLER_SECRET" ]; then SECRET_EXISTS=true ; fi | |
echo "SECRETS_ENABLED=$SECRET_EXISTS" >> $GITHUB_OUTPUT | |
- name: Checkout | |
if: steps.secrets_set.outputs.SECRETS_ENABLED | |
uses: actions/checkout@v4 | |
- name: Restore BYOND cache | |
if: steps.secrets_set.outputs.SECRETS_ENABLED | |
uses: actions/cache@v4 | |
with: | |
path: ~/BYOND | |
key: ${{ runner.os }}-byond-${{ hashFiles('dependencies.sh') }} | |
- name: Install rust-g | |
if: steps.secrets_set.outputs.SECRETS_ENABLED | |
run: | | |
bash tools/ci/install_rust_g.sh | |
- name: Compile and generate Autowiki files | |
if: steps.secrets_set.outputs.SECRETS_ENABLED | |
run: | | |
bash tools/ci/install_byond.sh | |
source $HOME/BYOND/byond/bin/byondsetup | |
tools/build/build --ci autowiki | |
- name: Run Autowiki | |
if: steps.secrets_set.outputs.SECRETS_ENABLED | |
env: | |
USERNAME: ${{ secrets.AUTOWIKI_USERNAME }} | |
PASSWORD: ${{ secrets.AUTOWIKI_PASSWORD }} | |
run: | | |
cd tools/autowiki | |
npm install | |
cd ../.. | |
node tools/autowiki/autowiki.js data/autowiki_edits.txt data/autowiki_files/ |