diff --git a/.github/actions/prepare/action.yml b/.github/actions/prepare/action.yml index 943b135..4e9c501 100644 --- a/.github/actions/prepare/action.yml +++ b/.github/actions/prepare/action.yml @@ -7,6 +7,7 @@ runs: - uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4 with: node-version: '20' + registry-url: 'https://registry.npmjs.org' - name: Install dependencies uses: bahmutov/npm-install@e5c7e14408aa6089501de32bd16123b41738047e # v1.10.2 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2be7c47..ef31b11 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -32,6 +32,6 @@ jobs: if: ${{ steps.release.outputs.release_created }} - name: Publish to npm if: ${{ steps.release.outputs.release_created }} + run: npm publish --provenance --access public env: NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} - run: npm publish diff --git a/package.json b/package.json index 64c7fb7..ad2c3c0 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "description": "Import scripts and modules from virtual filesystems", "repository": { "type": "git", - "url": "https://github.com/boneskull/impvol" + "url": "git+https://github.com/boneskull/impvol.git" }, "author": { "name": "Christopher Hiller", diff --git a/release-please-config.json b/release-please-config.json index 0405ab1..b751f81 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -3,7 +3,7 @@ "packages": { ".": { "release-type": "node", - "release-as": "0.1.4" + "release-as": "0.1.5" } } }