Skip to content

Commit

Permalink
Merge branch 'main' into fix/shutdown-agents-after-dte
Browse files Browse the repository at this point in the history
  • Loading branch information
meeroslav committed Nov 17, 2023
2 parents fa2214e + b65f0cb commit 62ff3fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nx-cloud-agents.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
uses: pnpm/action-setup@v2
with:
version: ${{ inputs.pnpm-version }}
package_json_file: "${{ inputs.working-directory || github.workspace }}/package.json"
package_json_file: "${{ inputs.working-directory && format('{0}/package.json', inputs.working-directory) || 'package.json' }}"

- name: Print node/npm/yarn versions
id: versions
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nx-cloud-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ jobs:
uses: pnpm/action-setup@v2
with:
version: ${{ inputs.pnpm-version }}
package_json_file: "${{ inputs.working-directory || github.workspace }}/package.json"
package_json_file: "${{ inputs.working-directory && format('{0}/package.json', inputs.working-directory) || 'package.json' }}"

- name: Print node/npm/yarn versions
id: versions
Expand Down

0 comments on commit 62ff3fa

Please sign in to comment.