Skip to content

Commit 551c777

Browse files
committed
(fix) Evaluate the working-repository expression in action.yml
1 parent 0e092a6 commit 551c777

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ runs:
1616
steps:
1717
- name: Package for Google Cloud Functions
1818
if: inputs.faas-provider == 'gcloud'
19-
working-directory: inputs.working-directory
19+
working-directory: ${{ inputs.working-directory }}
2020
run: package-gcloud.sh
2121
shell: bash
2222
env:
2323
DEPLOYMENT_DIR: deployment
2424
- name: Package for Azure Functions
2525
if: inputs.faas-provider == 'azure'
26-
working-directory: inputs.working-directory
26+
working-directory: ${{ inputs.working-directory }}
2727
run: package-azure.sh
2828
shell: bash
2929
env:

0 commit comments

Comments
 (0)