Skip to content

Download Forbidden & Limited Lists #12

Download Forbidden & Limited Lists

Download Forbidden & Limited Lists #12

# SPDX-FileCopyrightText: © 2023 Kevin Lu
# SPDX-Licence-Identifier: AGPL-3.0-or-later
name: Download Forbidden & Limited Lists
on:
workflow_dispatch:
repository_dispatch:
types:
- update
schedule:
- cron: "5 0 * * *"
jobs:
tcg:
name: Download TCG Forbidden & Limited Lists
runs-on: ubuntu-latest
outputs:
status: ${{ steps.commit.outputs.status }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
cache-dependency-path: yarn.lock
- run: yarn
- run: yarn download-tcg
- id: commit
uses: DawnbrandBots/yaml-yugi/.github/actions/commit-push@master
with:
message: "Download TCG Forbidden & Limited Lists: ${{ github.run_number }} (${{ github.run_id }})"
ocg:
name: Download OCG Forbidden & Limited Lists
runs-on: ubuntu-latest
outputs:
status: ${{ steps.commit.outputs.status }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
cache-dependency-path: yarn.lock
- run: yarn
- run: curl -fsSLo /tmp/cards.json https://github.com/DawnbrandBots/yaml-yugi/raw/aggregate/cards.json
- run: yarn download-ocg /tmp/cards.json --recent
- id: commit
uses: DawnbrandBots/yaml-yugi/.github/actions/commit-push@master
with:
message: "Download OCG Forbidden & Limited Lists: ${{ github.run_number }} (${{ github.run_id }})"
rush:
name: Download Rush Duel Forbidden & Limited Lists
runs-on: ubuntu-latest
outputs:
status: ${{ steps.commit.outputs.status }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
cache-dependency-path: yarn.lock
- run: yarn
- run: curl -fsSLo /tmp/rush.json https://github.com/DawnbrandBots/yaml-yugi/raw/aggregate/rush.json
- run: yarn download-rush /tmp/rush.json
- id: commit
uses: DawnbrandBots/yaml-yugi/.github/actions/commit-push@master
with:
message: "Download Rush Duel Forbidden & Limited Lists: ${{ github.run_number }} (${{ github.run_id }})"
master-duel:
name: Transform Master Duel Forbidden & Limited Lists
runs-on: ubuntu-latest
outputs:
status: ${{ steps.commit.outputs.status }}
steps:
- uses: actions/checkout@v4
with:
path: yaml-yugi-limit-regulation
- uses: actions/checkout@v4
with:
repository: DawnbrandBots/yaml-yugipedia
path: yaml-yugipedia
- uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: pip
cache-dependency-path: yaml-yugi-limit-regulation/src/requirements.txt
- run: pip install -r yaml-yugi-limit-regulation/src/requirements.txt
- uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
cache-dependency-path: yaml-yugi-limit-regulation/yarn.lock
- working-directory: yaml-yugi-limit-regulation
run: yarn
- run: curl -fsSLo /tmp/cards.json https://github.com/DawnbrandBots/yaml-yugi/raw/aggregate/cards.json
- working-directory: yaml-yugi-limit-regulation/data/master-duel
run: python ../../src/masterduel-extract-transform.py ../../../yaml-yugipedia/wikitext/master-duel-limit-regulation
- working-directory: yaml-yugi-limit-regulation
run: yarn transform-md /tmp/cards.json
- id: commit
uses: DawnbrandBots/yaml-yugi/.github/actions/commit-push@master
with:
message: "Transform Master Duel Forbidden & Limited Lists: ${{ github.run_number }} (${{ github.run_id }})"
working-directory: yaml-yugi-limit-regulation
publish:
needs: [tcg, ocg, rush, master-duel]
if: needs.*.outputs.status > 0 && !cancelled()
uses: ./.github/workflows/publish.yaml