Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ksuchitra532 committed Jul 2, 2024
1 parent 5cd19e6 commit 1357598
Showing 1 changed file with 17 additions and 15 deletions.
32 changes: 17 additions & 15 deletions .github/workflows/trigger-all-localisation-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on:
- lts
- build
COUNTRY:
description: "Select individual language to build"
description: "Select individual Country to build"
required: false
type: choice
options:
Expand All @@ -43,22 +43,24 @@ jobs:
matrix:
language: [PT-BR, DE, ES, FR, IT, JA, KO, PL, RU, ZH]
steps:
- name: Invoke Localisation Workflows
- name: Invoke Localisation Workflows for All repos
if: ${{ github.event.inputs.Language }} == 'ALL'
uses: benc-uk/workflow-dispatch@v1
with:
workflow: ${{ github.event.inputs.BUILD_TYPE }}.yml
repo: YoYoGames/GameMaker-Manual-${{ matrix.language }}
token: ${{ secrets.GH_TOKEN }}
continue-on-error: false
- name: Invoke Localisation Workflows
# uses: benc-uk/workflow-dispatch@v1
# with:
# workflow: ${{ github.event.inputs.BUILD_TYPE }}.yml
# repo: YoYoGames/GameMaker-Manual-${{ matrix.language }}
# token: ${{ secrets.GH_TOKEN }}
# continue-on-error: false
run: echo "Invoke Localisation Workflows for All repos"
- name: Invoke Localisation Workflow for Single repo
if: ${{ github.event.inputs.Language }} == 'SINGLE'
uses: benc-uk/workflow-dispatch@v1
with:
workflow: ${{ github.event.inputs.BUILD_TYPE }}.yml
repo: YoYoGames/GameMaker-Manual-${{ github.event.inputs.COUNTRY }}
token: ${{ secrets.GH_TOKEN }}
continue-on-error: false
# uses: benc-uk/workflow-dispatch@v1
# with:
# workflow: ${{ github.event.inputs.BUILD_TYPE }}.yml
# repo: YoYoGames/GameMaker-Manual-${{ github.event.inputs.COUNTRY }}
# token: ${{ secrets.GH_TOKEN }}
# continue-on-error: false
run: echo "Invoke Localisation Workflow for Single repo"



0 comments on commit 1357598

Please sign in to comment.