Skip to content

Commit

Permalink
Merge pull request #52 from valiantlynx:working
Browse files Browse the repository at this point in the history
Working
  • Loading branch information
valiantlynx authored Apr 8, 2024
2 parents 5a93e4d + 5a7cbf8 commit 064604d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/changeset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ jobs:
release:
name: Release
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- name: Checkout Repo
uses: actions/checkout@v3
Expand All @@ -24,7 +27,6 @@ jobs:
node-version: '21'
registry-url: 'https://registry.npmjs.org/'
scope: '@valiantlynx'
node-auth-token: ${{ secrets.NPM_TOKEN }}

- name: Install Dependencies
run: yarn
Expand All @@ -41,4 +43,5 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# The NPM_TOKEN is now only necessary if the publish script or any other step explicitly requires it,
# but the setup-node action has already configured npm authentication globally for this job.
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
"name": "@valiantlynx/svelte-rich-text",
"version": "0.2.5",
"publishConfig": {
"access": "public"
"access": "public",
"registry": "https://registry.npmjs.org/",
"provenance": true
},
"description": "Rich text editor as a svelte component",
"homepage": "https://svelte-rich-text.valiantlynx.com",
Expand Down

0 comments on commit 064604d

Please sign in to comment.