Skip to content

Commit 7da6f46

Browse files
committed
Update build.yml
1 parent 7078856 commit 7da6f46

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,13 +78,17 @@ jobs:
7878
TAG_EXISTS="${{ steps.tag_check.outputs.exists }}"
7979
8080
PROJECT_NAME="${{ steps.project_info.outputs.name }}"
81-
GAME_VERSIONS="${{ steps.project_info.outputs.targets_game_versions }}"
82-
LOADERS="${{ steps.project_info.outputs.targets_loaders }}"
8381
8482
# Preparation
8583
RAW_INCLUDED="${{ steps.project_info.outputs.included }}"
8684
INCLUDED=$(echo "$RAW_INCLUDED" | tr -d '[]"' | tr ',' ' ' | xargs)
8785
86+
RAW_LOADERS="${{ steps.project_info.outputs.targets_loaders }}"
87+
LOADERS=$(echo "$RAW_LOADERS" | tr ' ' ',')
88+
89+
RAW_GAME_VERSIONS="${{ steps.project_info.outputs.targets_game_versions }}"
90+
GAME_VERSIONS=$(echo "$RAW_GAME_VERSIONS" | tr ' ' ',')
91+
8892
IS_RELEASE_CANDIDATE="false"
8993
if [[ "$TAG_EXISTS" == "false" && -n "$CHANGELOG_VER" && "$CHANGELOG_VER" != "Unreleased" ]]; then
9094
IS_RELEASE_CANDIDATE="true"
@@ -228,7 +232,6 @@ jobs:
228232
github-generate-changelog: true
229233
github-draft: false
230234
github-prerelease: ${{ needs.info.outputs.version_type != 'release' }}
231-
github-commitish: main
232235
github-token: ${{ secrets.GITHUB_TOKEN }}
233236

234237
files: ${{ needs.info.outputs.full_name }}.zip

0 commit comments

Comments
 (0)