Skip to content

Commit 1cb720d

Browse files
committed
(fix) Use GITHUB_ACTION_PATH in action.yml
1 parent 551c777 commit 1cb720d

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
@@ -17,14 +17,14 @@ runs:
1717
- name: Package for Google Cloud Functions
1818
if: inputs.faas-provider == 'gcloud'
1919
working-directory: ${{ inputs.working-directory }}
20-
run: package-gcloud.sh
20+
run: ${GITHUB_ACTION_PATH}/package-gcloud.sh
2121
shell: bash
2222
env:
2323
DEPLOYMENT_DIR: deployment
2424
- name: Package for Azure Functions
2525
if: inputs.faas-provider == 'azure'
2626
working-directory: ${{ inputs.working-directory }}
27-
run: package-azure.sh
27+
run: ${GITHUB_ACTION_PATH}/package-azure.sh
2828
shell: bash
2929
env:
3030
APP_NAME: ${{ inputs.function-name }}

0 commit comments

Comments
 (0)