Skip to content

Commit

Permalink
fix: change action path for containers actions/runner#716
Browse files Browse the repository at this point in the history
  • Loading branch information
MrBlenny committed May 26, 2022
1 parent 14a67fc commit a07154e
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 @@ -21,8 +21,8 @@ runs:
using: 'composite'
steps:
- name: Setup dependencies
run: bash ${{ github.action_path }}/scripts/setup-dependencies.bash ${{ inputs.ros2-distro }}
run: bash ${GITHUB_ACTION_PATH}/scripts/setup-dependencies.bash ${{ inputs.ros2-distro }}
shell: bash
- name: Build Debian packages
run: bash ${{ github.action_path }}/scripts/build-debian.bash ${{ inputs.ros2-distro }} ${{ inputs.output-dir }} ${{ inputs.version }}
run: bash ${GITHUB_ACTION_PATH}/scripts/build-debian.bash ${{ inputs.ros2-distro }} ${{ inputs.output-dir }} ${{ inputs.version }}
shell: bash

0 comments on commit a07154e

Please sign in to comment.