63 lines
1.9 KiB
YAML
63 lines
1.9 KiB
YAML
# This workflow updates the main json files, and the en_us.lang, after a Quest Book change.
|
|
name: Update Quest Book Jsons and Lang
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- main
|
|
- test_buildscript*
|
|
paths:
|
|
- "overrides/config/betterquesting/saved_quests/NormalQuestsDev.json" # Normal QB Developer Json
|
|
- "overrides/config/betterquesting/saved_quests/ExpertQuestsDev.json" # Expert QB Developer Json
|
|
|
|
jobs:
|
|
updateQB:
|
|
if: "${{ github.repository_owner == 'Nomi-CEu' }}"
|
|
name: Update Quest Book Jsons and Lang (${{ inputs.tag }})
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout Ref
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
ref: ${{ inputs.tag }}
|
|
ssh-key: ${{ secrets.SSH_KEY }}
|
|
|
|
- name: Restore Cached Files
|
|
uses: actions/cache@v3
|
|
id: cache
|
|
with:
|
|
path: |
|
|
~/.npm
|
|
./.cache
|
|
./tools/node_modules
|
|
key: ${{ runner.os }}-bunny-${{ hashFiles('**/.cache', '**/package-lock.json', '**/manifest.json') }}
|
|
restore-keys: ${{ runner.os }}-bunny-
|
|
|
|
- name: Setup NodeJS v16
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: "16"
|
|
check-latest: true
|
|
|
|
- name: Setup NPM Packages
|
|
working-directory: ./tools
|
|
run: npm ci
|
|
|
|
- name: Transform QB
|
|
working-directory: ./tools
|
|
run: npx gulp transformQB
|
|
|
|
- name: Commit and push QB Changes
|
|
uses: "stefanzweifel/git-auto-commit-action@v4"
|
|
id: "commit"
|
|
with:
|
|
commit_message: "Update Quest Book Jsons and Lang\n\n[SKIP]"
|
|
commit_author: "github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>"
|
|
|
|
- name: Throw Error if No Changes were Detected
|
|
if: steps.commit.outputs.changes_detected == 'false'
|
|
run: echo "No QB Changes Detected. This may be intended, or an error."
|