Skip to content

Commit

Permalink
fix: use GITHUB_ACTION_PATH variable (see actions/runner#716)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gagnon06 authored Jul 26, 2023
1 parent 0b54220 commit 2ee84eb
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 @@ -15,9 +15,9 @@ inputs:
runs:
using: composite
steps:
- run: cd ${{ github.action_path }} && npm install
- run: cd ${GITHUB_ACTION_PATH} && npm install
shell: bash
- run: cd ${{ github.action_path }} && SWAGGER_EDITOR_URL=${{ inputs.swagger-editor-url }} DEFINITION_FILE=${{ inputs.definition-file }} IGNORE_ERROR=${{ inputs.ignore-error }} node src/index.js
- run: cd ${GITHUB_ACTION_PATH} && SWAGGER_EDITOR_URL=${{ inputs.swagger-editor-url }} DEFINITION_FILE=${{ inputs.definition-file }} IGNORE_ERROR=${{ inputs.ignore-error }} node src/index.js
shell: bash
branding:
icon: 'file-text'
Expand Down

0 comments on commit 2ee84eb

Please sign in to comment.