Skip to content

Commit fef9da9

Browse files
committed
inputs passing to script
1 parent e5ad585 commit fef9da9

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

action.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,11 @@ runs:
1717
run: chmod +x $GITHUB_WORKSPACE/extract-expose-version.sh
1818
shell: bash
1919

20-
- name: Run the script
21-
run: $GITHUB_WORKSPACE/extract-expose-version.sh
20+
- name: Run the script with inputs
21+
run: |
22+
EXPOSE_CODE=$INPUT_EXPOSE_CODE
23+
EXPOSE_NAME=$INPUT_EXPOSE_NAME
24+
$GITHUB_WORKSPACE/extract-expose-version.sh $EXPOSE_CODE $EXPOSE_NAME
2225
shell: bash
2326

2427
- name: Read extracted values from file

0 commit comments

Comments
 (0)