diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml index 0eacce7..84d07a7 100644 --- a/.github/workflows/deployment.yml +++ b/.github/workflows/deployment.yml @@ -24,8 +24,6 @@ jobs: restore-keys: | ${{ runner.os }}-node- - run: npm ci - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - run: npm test test_win: name: "Windows" @@ -43,8 +41,6 @@ jobs: restore-keys: | ${{ runner.os }}-node- - run: npm ci - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - run: npm test tag: name: "Publishing release" @@ -69,8 +65,6 @@ jobs: restore-keys: | ${{ runner.os }}-node- - run: npm ci - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - name: Read version from package.json uses: culshaw/read-package-node-version-actions@v1 id: package-node-version @@ -89,6 +83,6 @@ jobs: ${{ steps.Changelog.outputs.changelog }} draft: false prerelease: false - - run: npm publish + - run: npm publish --access public env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}