Skip to content

Commit 932c762

Browse files
authored
fix(bug): use relative path for start-firebase-emulator script references
fix(bug): use relative path for start-firebase-emulator script references
2 parents 07a5ec9 + 3ccebea commit 932c762

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

action.yaml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,11 @@ runs:
6565
- name: Start Firebase Emulator
6666
shell: bash
6767
run: |
68-
chmod +x ./start-firebase-emulator.sh && ./start-firebase-emulator.sh ${{ env.EMULATORS }} ${{ inputs.project-id }} ${{ inputs.max-retries }} ${{ inputs.max-checks }} ${{ inputs.wait-time }} ${{ inputs.check-port }}
68+
chmod +x ${{ github.action_path }}/start-firebase-emulator.sh
69+
${{ github.action_path }}/start-firebase-emulator.sh \
70+
${{ inputs.emulators }} \
71+
${{ inputs.project-id }} \
72+
${{ inputs.max-retries }} \
73+
${{ inputs.max-checks }} \
74+
${{ inputs.wait-time }} \
75+
${{ inputs.check-port }}

0 commit comments

Comments
 (0)