We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5ad585 commit fef9da9Copy full SHA for fef9da9
action.yml
@@ -17,8 +17,11 @@ runs:
17
run: chmod +x $GITHUB_WORKSPACE/extract-expose-version.sh
18
shell: bash
19
20
- - name: Run the script
21
- run: $GITHUB_WORKSPACE/extract-expose-version.sh
+ - name: Run the script with inputs
+ run: |
22
+ EXPOSE_CODE=$INPUT_EXPOSE_CODE
23
+ EXPOSE_NAME=$INPUT_EXPOSE_NAME
24
+ $GITHUB_WORKSPACE/extract-expose-version.sh $EXPOSE_CODE $EXPOSE_NAME
25
26
27
- name: Read extracted values from file
0 commit comments