We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 143d9d4 commit 76ba43aCopy full SHA for 76ba43a
action.yml
@@ -32,7 +32,7 @@ runs:
32
steps:
33
- name: Download git-cliff
34
shell: bash
35
- run: ${{ github.action_path }}/install.sh
+ run: ${GITHUB_ACTION_PATH}/install.sh
36
env:
37
RUNNER_OS: ${{ runner.os }}
38
RUNNER_ARCH: ${{ runner.arch }}
@@ -42,7 +42,7 @@ runs:
42
- name: Run git-cliff
43
id: run-git-cliff
44
45
- run: ${{ github.action_path }}/run.sh --config=${{ inputs.config }} ${{ inputs.args }}
+ run: ${GITHUB_ACTION_PATH}/run.sh --config=${{ inputs.config }} ${{ inputs.args }}
46
47
branding:
48
icon: "triangle"
0 commit comments