Skip to content
This repository was archived by the owner on Oct 4, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
feat(hub-501): apparently registry urls need a slash on the end
  • Loading branch information
kevin-boutin committed Sep 15, 2023
commit 8ee8d6f08ba1927eb2e7b60a84cb06ab2c33aded
4 changes: 2 additions & 2 deletions .github/workflows/github-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
with:
always-auth: true
node-version: ${{ env.NODE_VERSION }}
registry-url: https://npm.pkg.github.com/locusrobotics
registry-url: https://npm.pkg.github.com/locusrobotics/

- name: Install dependencies
if: steps.cacheNpm.outputs.cache-hit != 'true'
Expand All @@ -58,7 +58,7 @@ jobs:
# npm whoami --registry https://npm.pkg.github.com/
run: |
cat /home/runner/work/_temp/.npmrc
npm publish --access restricted --registry https://npm.pkg.github.com/locusrobotics
npm publish --access restricted --registry https://npm.pkg.github.com/locusrobotics/

- name: Create and publish a release
uses: softprops/action-gh-release@v1
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
"typescript": "^3.4.5"
},
"publishConfig": {
"@locusrobotics:registry": "https://npm.pkg.github.com/locusrobotics"
"@locusrobotics:registry": "https://npm.pkg.github.com/locusrobotics/"
},
"peerDependencies": {
"serverless-webpack": "^4.2.0",
Expand Down