2020-05-22 00:28:22 +02:00
|
|
|
name: Build
|
|
|
|
on:
|
|
|
|
push:
|
2020-05-22 00:38:47 +02:00
|
|
|
branches:
|
|
|
|
- master
|
2020-05-22 00:52:47 +02:00
|
|
|
paths:
|
2020-06-01 18:16:45 +02:00
|
|
|
- yaml/*.yml
|
2020-05-24 02:35:07 +02:00
|
|
|
- md/*.md
|
2020-06-01 23:21:44 +02:00
|
|
|
- _build.js
|
2020-06-05 16:07:49 +02:00
|
|
|
- _wiki.js
|
2020-05-22 00:28:22 +02:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: 13.x
|
|
|
|
- name: Install dependencies
|
|
|
|
run: npm i
|
|
|
|
- name: Build
|
2020-05-22 00:48:12 +02:00
|
|
|
run: node _build.js
|
2020-05-22 00:28:22 +02:00
|
|
|
- name: Commit
|
|
|
|
run: |
|
2020-05-24 02:36:32 +02:00
|
|
|
git add README.md
|
2020-05-22 00:28:22 +02:00
|
|
|
git config --local user.email "action@github.com"
|
|
|
|
git config --local user.name "GitHub Action"
|
2021-08-08 02:06:49 +02:00
|
|
|
git commit --allow-empty -m "Generated README.md"
|
2020-05-22 00:28:22 +02:00
|
|
|
- name: Push
|
|
|
|
uses: ad-m/github-push-action@master
|
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
2020-05-22 00:44:08 +02:00
|
|
|
branch: master
|
2020-06-02 23:20:31 +02:00
|
|
|
- name: Wiki
|
|
|
|
run: node _wiki.js
|
|
|
|
env:
|
|
|
|
REDDIT_USER: ${{ secrets.REDDIT_USER}}
|
|
|
|
REDDIT_PASS: ${{ secrets.REDDIT_PASS}}
|
|
|
|
REDDIT_CLIENT_ID: ${{ secrets.REDDIT_CLIENT_ID}}
|
2021-08-08 02:06:49 +02:00
|
|
|
REDDIT_CLIENT_SECRET: ${{ secrets.REDDIT_CLIENT_SECRET}}
|