Skip to content

Commit 6a7ecf4

Browse files
authored
Merge pull request #8 from LarsSK06/dev
[dev] Hotfix
2 parents dbf7807 + 8c4b020 commit 6a7ecf4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/publish.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ jobs:
1616
uses: actions/setup-node@v4
1717

1818
- name: Test dependencies
19-
working-directory: pkg
19+
working-directory: ./pkg
2020
run: npm ci
2121

2222
- name: Test build
23-
working-directory: pkg
23+
working-directory: ./pkg
2424
run: npm run build
2525

2626
publish-npm:
@@ -29,7 +29,7 @@ jobs:
2929
needs: [build]
3030
steps:
3131
- name: Publish to registry
32-
working-directory: pkg
32+
working-directory: ./pkg
3333
run: npm publish --access public
3434
env:
3535
NODE_AUTH_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}
@@ -40,7 +40,7 @@ jobs:
4040
needs: [build]
4141
steps:
4242
- name: Publish to GitHub Packages registry
43-
working-directory: pkg
43+
working-directory: ./pkg
4444
run: npm publish --registry https://npm.pkg.github.com
4545
env:
4646
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)