Skip to content

Commit

Permalink
Merge pull request #13 from shopware/philipreinken-patch-1
Browse files Browse the repository at this point in the history
fix: use relative current-directory reference when inputs.path is empty
  • Loading branch information
philipreinken authored Oct 31, 2024
2 parents c57d8d4 + 0d41800 commit 47270ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ runs:
working-directory: ${{ inputs.path }}
run: |
yq -n '.shopware.api.jwt_key.use_app_secret = true' | tee config/packages/zz-shopware.yaml
if: ${{ hashFiles(format('{0}/src/Core/Framework/Api/OAuth/JWTConfigurationFactory.php', inputs.path)) != '' }}
if: ${{ hashFiles(format('{0}/src/Core/Framework/Api/OAuth/JWTConfigurationFactory.php', (inputs.path || '.' ))) != '' }}

- name: Install Shopware
if: inputs.install == 'true'
Expand Down

0 comments on commit 47270ec

Please sign in to comment.