You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/actions/assemble-release/action.yml
+16-21Lines changed: 16 additions & 21 deletions
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@ name: Assemble Release
2
2
3
3
x-env:
4
4
RELEASE_STAGING:
5
-
description: The artifact files will be copied to this directory before being packaged in the zip file. This becomes the input for `upload-artifact`. If not set, `/tmp/release` is used instead
5
+
description: The artifact files will be copied to this directory before being packaged in the zip file. If not set, `/tmp/release` is used instead
6
6
7
7
inputs:
8
8
artifacts:
@@ -14,7 +14,7 @@ inputs:
14
14
default: "**/*.pdb"
15
15
16
16
output-file-name:
17
-
description: Output artifact name used in the upload-artifact action. a zip file with this name will be created in the github workspace so that it can be immediately consumed by other actions in the workflow without having to download the artifact.
17
+
description: Output artifact name used in the upload-artifact action WITHOUT ".zip" extension. a zip file with this name will be created in the github workspace so that it can be immediately consumed by other actions in the workflow without having to download the artifact.
Copy file name to clipboardExpand all lines: .github/actions/setup-ckan/action.yml
+11-5Lines changed: 11 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,10 @@ x-env:
6
6
description: The path to use as the root of a KSP instance for CKAN to set-up. If not set, `/tmp/ksp` is used instead.
7
7
8
8
inputs:
9
+
ckan-install-method:
10
+
description: Method of installing CKAN. Can be set to 'apt' to install from the official .deb file, or 'skip' to skip installation if your runner already has CKAN installed.
11
+
default: 'apt'
12
+
9
13
ckan-version:
10
14
description: CKAN tag to install. set to an empty string to always install the most recent version. See [the CKAN releases page](https://github.com/KSP-CKAN/CKAN/tags) for a list of available tags
0 commit comments