Skip to content

Commit f778e81

Browse files
committed
add Extras to default artifact list
1 parent f60ffb1 commit f778e81

4 files changed

Lines changed: 6 additions & 4 deletions

File tree

.github/actions/assemble-release/action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
name: Assemble Release
2+
description:
3+
assembles a release zip from local files. Usually you run this after update-version, compile, etc.
24

35
x-env:
46
RELEASE_STAGING:
@@ -7,7 +9,7 @@ x-env:
79
inputs:
810
artifacts:
911
description: Space-separated list of file globs to include in the output artifact, relative to `working-directory`
10-
default: GameData LICENSE* README* CHANGELOG*
12+
default: GameData Extras LICENSE* README* CHANGELOG*
1113

1214
artifacts-exclude:
1315
description: Space-separated list of file globs remove from the staging directory before zipping

.github/workflow-templates/build-msbuild.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,5 @@ jobs:
3838
# Assemble the mod into a release package and upload it as an artifact
3939
- uses: KSPModdingLibs/KSPBuildTools/.github/actions/assemble-release@main
4040
with:
41-
artifacts: "GameData LICENSE* README* CHANGELOG*"
41+
artifacts: "GameData Extras LICENSE* README* CHANGELOG*"
4242
output-file-name: ${{ github.event.repository.name }}-${{ inputs.build-configuration }}

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
default: Release
99
artifacts:
1010
type: string
11-
default: GameData LICENSE* README* CHANGELOG*
11+
default: GameData Extras LICENSE* README* CHANGELOG*
1212
ksp-zip-url:
1313
type: string
1414
default: https://github.com/KSPModdingLibs/KSPLibs/raw/main/KSP-1.12.5.zip

.github/workflows/create-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717
default: Release
1818
artifacts:
1919
type: string
20-
default: GameData LICENSE* README* CHANGELOG*
20+
default: GameData Extras LICENSE* README* CHANGELOG*
2121
flatten:
2222
type: boolean
2323
default: true

0 commit comments

Comments
 (0)