Skip to content

Commit

Permalink
Fix package repo format
Browse files Browse the repository at this point in the history
  • Loading branch information
ejsmith committed May 4, 2024
1 parent bab9f3b commit 728116d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
- name: Publish Release Package
if: startsWith(github.ref, 'refs/tags/v')
working-directory: npm
run: npm publish --access public
run: npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

Expand All @@ -83,6 +83,6 @@ jobs:
- name: Push GitHub CI Packages
if: github.event_name != 'pull_request'
working-directory: npm
run: npm publish --provenance --access public
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
5 changes: 4 additions & 1 deletion scripts/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ await build({
package: {
name: "fetchclient",
version: Deno.args[0],
repository: "exceptionless/fetchclient",
repository: {
type: "git",
url: "git+https://github.com/exceptionless/fetchclient.git",
},
license: "Apache-2.0",
description:
"A simple fetch client with middleware support for Deno and the browser.",
Expand Down

0 comments on commit 728116d

Please sign in to comment.