Skip to content

Commit

Permalink
fix(action): use environment variable for GitHub Action path (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
orhun authored Sep 17, 2024
1 parent 143d9d4 commit 76ba43a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ runs:
steps:
- name: Download git-cliff
shell: bash
run: ${{ github.action_path }}/install.sh
run: ${GITHUB_ACTION_PATH}/install.sh
env:
RUNNER_OS: ${{ runner.os }}
RUNNER_ARCH: ${{ runner.arch }}
Expand All @@ -42,7 +42,7 @@ runs:
- name: Run git-cliff
id: run-git-cliff
shell: bash
run: ${{ github.action_path }}/run.sh --config=${{ inputs.config }} ${{ inputs.args }}
run: ${GITHUB_ACTION_PATH}/run.sh --config=${{ inputs.config }} ${{ inputs.args }}

branding:
icon: "triangle"
Expand Down

0 comments on commit 76ba43a

Please sign in to comment.