Skip to content

Commit e8bb2b8

Browse files
committed
attempt to correct misspelled variables
1 parent 703d9cf commit e8bb2b8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/actions/upload-artifact/action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
name: Upload Build
22
description: Uploads resulting build
33
inputs:
4-
SOURCE_DEST:
4+
SOURCE_DIR:
55
description: 'Path to directory to be uploaded'
66
required: true
77
type: string
8-
DEST_DIR:
8+
DEST_NAME:
99
description: 'Name of the uploaded artifact'
1010
required: true
1111
type: string
@@ -17,11 +17,11 @@ runs:
1717
with:
1818
# Name of the artifact to upload.
1919
# Optional. Default is 'artifact'
20-
name: ${{ inputs.DEST_DIR }}
20+
name: ${{ inputs.DEST_NAME }}
2121

2222
# A file, directory or wildcard pattern that describes what to upload
2323
# Required.
24-
path: ${{ inputs.OUTPUT_DIR }}
24+
path: ${{ inputs.SOURCE_DIR }}
2525

2626
# The desired behavior if no files are found using the provided path.
2727
# Available Options:

.github/workflows/cmake-multi-platform.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,6 @@ jobs:
8888
uses: ./.github/actions/upload-artifact
8989
if: ${{ always() && steps.build.outcome == 'success' && steps.test.outcome == 'success'}}
9090
with:
91-
DEST_DIR: ${{ matrix.os }}-sQOI_build
91+
DEST_NAME: ${{ matrix.os }}-sQOI_build
9292
SOURCE_DIR: ${{ steps.strings.outputs.build-output-dir }}
9393

0 commit comments

Comments
 (0)