From 9a2c2ac7f18f3d45133f62e013bb7b5eed461a8f Mon Sep 17 00:00:00 2001 From: HarelM Date: Sat, 8 Oct 2022 14:39:41 +0300 Subject: [PATCH] Fix publish --- .github/workflows/npm-publish.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 6c641b90..324f082d 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -18,6 +18,8 @@ jobs: registry-url: https://registry.npmjs.org/ - run: npm install - run: npm run build - - run: npm publish dist/ngx-maplibre-gl --access=public + - run: | + cd dist/ngx-maplibre-gl + npm publish --access=public env: NODE_AUTH_TOKEN: ${{secrets.NPM_ORG_TOKEN}}