Skip to content

Commit 9f88d5a

Browse files
committed
try to fix file path
1 parent 6900719 commit 9f88d5a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ParseRelaysDotDatInteractive.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
ngrok-authtoken: ${{ secrets.NGROK_AUTHTOKEN }}
1616
interactive: |
1717
fields:
18-
- label: uploaded_file
18+
- label: uploaded-file
1919
properties:
2020
display: Upload Relays.dat file to parse # Optional: if not specified, the title for the field will not be displayed on the portal
2121
type: file
@@ -35,7 +35,7 @@ jobs:
3535
run: |
3636
echo "Display uploaded files"
3737
echo -e "\n==============================\n"
38-
ls -la ${{ steps.interactive-inputs.outputs.uploaded_file }} # Use the label of the multifile/file field as the key to get the uploaded file directory
38+
ls -la ${{ steps.interactive-inputs.outputs.uploaded-file }} # Use the label of the multifile/file field as the key to get the uploaded file directory
3939
echo -e "\n==============================\n"
4040
4141
- name: Install Wine
@@ -51,4 +51,4 @@ jobs:
5151
5252
# will need to upload artifact and run in a different job or use Wine.
5353
- name: Run ParseRelaysDotDat
54-
run: wine ./ParseRelaysDotDat.exe ${{ steps.interactive-inputs.outputs.uploaded_file }}
54+
run: wine ./ParseRelaysDotDat.exe ${{ steps.interactive-inputs.outputs.uploaded-file }}

0 commit comments

Comments
 (0)