We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 551c777 commit 1cb720dCopy full SHA for 1cb720d
action.yml
@@ -17,14 +17,14 @@ runs:
17
- name: Package for Google Cloud Functions
18
if: inputs.faas-provider == 'gcloud'
19
working-directory: ${{ inputs.working-directory }}
20
- run: package-gcloud.sh
+ run: ${GITHUB_ACTION_PATH}/package-gcloud.sh
21
shell: bash
22
env:
23
DEPLOYMENT_DIR: deployment
24
- name: Package for Azure Functions
25
if: inputs.faas-provider == 'azure'
26
27
- run: package-azure.sh
+ run: ${GITHUB_ACTION_PATH}/package-azure.sh
28
29
30
APP_NAME: ${{ inputs.function-name }}
0 commit comments