Skip to content

Commit

Permalink
Use full folder pathway for github action inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
pflooky committed Jul 12, 2024
1 parent 4a6c582 commit 611e896
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ runs:
uses: 'actions/checkout@v4'
with:
repository: 'data-catering/insta-integration'
path: 'insta-integration'
- name: 'Checkout insta-infra repo'
uses: 'actions/checkout@v4'
with:
Expand All @@ -69,10 +70,10 @@ runs:
node-version: '20.x'
- name: 'Run integration tests'
shell: 'bash'
run: 'node ./dist/index.js'
run: 'node ./insta-integration/dist/index.js'
id: 'insta-integration'
env:
CONFIGURATION_FILE: '${{ inputs.configuration_file }}'
INSTA_INFRA_FOLDER: '${{ inputs.insta_infra_folder }}'
CONFIGURATION_FILE: '/home/runner/work/${{ github.repository }}/${{ inputs.configuration_file }}'
INSTA_INFRA_FOLDER: '/home/runner/work/${{ github.repository }}/${{ inputs.insta_infra_folder }}'
BASE_FOLDER: '/home/runner/work/${{ github.repository }}'
DATA_CATERER_VERSION: '${{ inputs.data_caterer_version }}'

0 comments on commit 611e896

Please sign in to comment.