-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add GitHub Actions workflows for fandom-cron.
- Loading branch information
1 parent
04778a2
commit 6835711
Showing
2 changed files
with
55 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Dump all wiki databases | ||
|
||
on: | ||
schedule: | ||
- cron: '43 0 * * *' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
dump: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Install Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '22' | ||
- name: Install dependencies | ||
working-directory: ./fandom-cron | ||
run: npm install | ||
- name: Set configuration | ||
working-directory: ./fandom-cron | ||
run: echo '${{ secrets.DUMP_CONFIG }}' > dump.json | ||
- name: Set cookies | ||
working-directory: ./fandom-cron | ||
run: echo '${{ secrets.DUMP_COOKIES }}' > fandom.cookies | ||
- name: Dump the databases | ||
working-directory: ./fandom-cron | ||
run: node dump.js |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Update Highlight.css | ||
|
||
on: | ||
schedule: | ||
- cron: '36 0 * * *' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
highlight: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Install Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '22' | ||
- name: Install dependencies | ||
working-directory: ./fandom-cron | ||
run: npm install | ||
- name: Set configuration | ||
working-directory: ./fandom-cron | ||
run: echo '${{ secrets.HIGHLIGHT_CONFIG }}' > highlight.json | ||
- name: Update Highlight.css | ||
working-directory: ./fandom-cron | ||
run: node highlight.js |