Skip to content

Commit 3ffdf65

Browse files
committed
refactor without working-directory
1 parent 65d5605 commit 3ffdf65

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/project.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,12 @@ jobs:
5858
steps:
5959
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
6060
- uses: ./.github/actions/node/latest
61-
- run: FILENAME=$(npm pack) && tar -zxf $FILENAME -C package
61+
- run: FILENAME=$(npm pack --pack-destination /tmp) && mv /tmp/$FILENAME /tmp/dd-trace.tgz
62+
- run: rm -rf *
63+
- run: tar -zxf /tmp/dd-trace.tgz -C $(pwd)
6264
- run: yarn --prod --ignore-optional
63-
working-directory: ./package
6465
- name: Compute module size tree and report
6566
uses: qard/heaviest-objects-in-the-universe@e2af4ff3a88e5fe507bd2de1943b015ba2ddda66 # v1.0.0
66-
working-directory: ./package
6767
with:
6868
github-token: ${{ secrets.GITHUB_TOKEN }}
6969

0 commit comments

Comments
 (0)