Skip to content

Commit

Permalink
Force working directory
Browse files Browse the repository at this point in the history
  • Loading branch information
Eeems committed Dec 23, 2023
1 parent 9ba9f13 commit 7131506
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ runs:
- name: Parse arguments
id: args
shell: bash
run: ${{ github.action_path }}/args.sh
run: ./args.sh
working-directory: ${{ github.action_path }}
env:
arch: ${{ inputs.arch }}
package: ${{ inputs.package }}
Expand All @@ -70,7 +71,6 @@ runs:
- name: Build package
shell: bash
run: |
cd "$package_dir"
toltecmk \
${{ inputs.verbose && '--verbose' || '' }} \
--work-dir "$work_dir" \
Expand All @@ -80,7 +80,7 @@ runs:
${{ join(fromJSON(steps.args.outputs.package), ' ') }} \
${{ join(fromJSON(steps.args.outputs.hook), ' ') }}
env:
package_dir: ${{ inputs.path }}
work_dir: ${{ inputs.work_dir }}
dist_dir: ${{ inputs.dist_dir }}
warnings: ${{ inputs.warnings }}
working-directory: ${{ inputs.path }}

0 comments on commit 7131506

Please sign in to comment.