Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tier940 committed Jun 15, 2024
1 parent 96579d5 commit 51f7223
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/deploy_questbook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ permissions:
on:
workflow_dispatch:
inputs:
choice_language:
description: 'Language'
default: EN-US, ZH
required: true
questbook_branch:
description: 'QuestBook branch'
type: choice
Expand All @@ -26,7 +30,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
language: ['EN-US', 'ZH']
language: ["${{ github.event.inputs.choice_language }}"]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -67,4 +71,4 @@ jobs:
draft: false
prerelease: false
generate_release_notes: true
files: ./DefaultQuests_${{ matrix.language }}.json
files: ./bqu/DefaultQuests_${{ matrix.language }}.json

0 comments on commit 51f7223

Please sign in to comment.