File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
name : Upload Build
2
2
description : Uploads resulting build
3
3
inputs :
4
- SOURCE_DEST :
4
+ SOURCE_DIR :
5
5
description : ' Path to directory to be uploaded'
6
6
required : true
7
7
type : string
8
- DEST_DIR :
8
+ DEST_NAME :
9
9
description : ' Name of the uploaded artifact'
10
10
required : true
11
11
type : string
@@ -17,11 +17,11 @@ runs:
17
17
with :
18
18
# Name of the artifact to upload.
19
19
# Optional. Default is 'artifact'
20
- name : ${{ inputs.DEST_DIR }}
20
+ name : ${{ inputs.DEST_NAME }}
21
21
22
22
# A file, directory or wildcard pattern that describes what to upload
23
23
# Required.
24
- path : ${{ inputs.OUTPUT_DIR }}
24
+ path : ${{ inputs.SOURCE_DIR }}
25
25
26
26
# The desired behavior if no files are found using the provided path.
27
27
# Available Options:
Original file line number Diff line number Diff line change 88
88
uses : ./.github/actions/upload-artifact
89
89
if : ${{ always() && steps.build.outcome == 'success' && steps.test.outcome == 'success'}}
90
90
with :
91
- DEST_DIR : ${{ matrix.os }}-sQOI_build
91
+ DEST_NAME : ${{ matrix.os }}-sQOI_build
92
92
SOURCE_DIR : ${{ steps.strings.outputs.build-output-dir }}
93
93
You can’t perform that action at this time.
0 commit comments