A > B > C > D #18
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: Import all and Deploy to GitHub Pages | |
on: | |
# A: Triggered on push to the main branch: | |
# push: | |
# branches: | |
# - main | |
# B: Triggered on manual workflow dispatch: | |
workflow_dispatch: | |
## C: Triggered on Wiki changes: | |
# gollum | |
permissions: | |
contents: write | |
jobs: | |
call-action1: | |
uses: ./.github/workflows/import-wiki.yml | |
secrets: | |
TERMS_WOT_MANAGE_JSON_ENDPOINT: ${{ secrets.TERMS_WOT_MANAGE_JSON_ENDPOINT }} | |
GENERIC_SCRAPER_JSON_ENDPOINT: ${{ secrets.GENERIC_SCRAPER_JSON_ENDPOINT }} | |
ANNOTATED_COPIES_JSON_ENDPOINT: ${{ secrets.ANNOTATED_COPIES_JSON_ENDPOINT }} | |
pause-after-action1: | |
needs: call-action1 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Pause for 10 seconds | |
run: sleep 10 | |
call-action2: | |
needs: pause-after-action1 | |
uses: ./.github/workflows/import-metadata-google-sheet.yml | |
secrets: | |
TERMS_WOT_MANAGE_JSON_ENDPOINT: ${{ secrets.TERMS_WOT_MANAGE_JSON_ENDPOINT }} | |
GENERIC_SCRAPER_JSON_ENDPOINT: ${{ secrets.GENERIC_SCRAPER_JSON_ENDPOINT }} | |
ANNOTATED_COPIES_JSON_ENDPOINT: ${{ secrets.ANNOTATED_COPIES_JSON_ENDPOINT }} | |
pause-after-action2: | |
needs: call-action2 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Pause for 10 seconds | |
run: sleep 10 | |
call-action3: | |
needs: pause-after-action2 | |
uses: ./.github/workflows/import-external-glossaries.yml | |
secrets: | |
TERMS_WOT_MANAGE_JSON_ENDPOINT: ${{ secrets.TERMS_WOT_MANAGE_JSON_ENDPOINT }} | |
GENERIC_SCRAPER_JSON_ENDPOINT: ${{ secrets.GENERIC_SCRAPER_JSON_ENDPOINT }} | |
ANNOTATED_COPIES_JSON_ENDPOINT: ${{ secrets.ANNOTATED_COPIES_JSON_ENDPOINT }} | |
pause-after-action3: | |
needs: call-action3 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Pause for 10 seconds | |
run: sleep 10 | |
call-action4: | |
needs: pause-after-action3 | |
uses: ./.github/workflows/deploy-to-gh-pages.yml | |
secrets: | |
TERMS_WOT_MANAGE_JSON_ENDPOINT: ${{ secrets.TERMS_WOT_MANAGE_JSON_ENDPOINT }} | |
GENERIC_SCRAPER_JSON_ENDPOINT: ${{ secrets.GENERIC_SCRAPER_JSON_ENDPOINT }} | |
ANNOTATED_COPIES_JSON_ENDPOINT: ${{ secrets.ANNOTATED_COPIES_JSON_ENDPOINT }} |