diff --git a/.github/workflows/publish-package.yml b/.github/workflows/publish-package.yml index 831dc6c..401efbf 100644 --- a/.github/workflows/publish-package.yml +++ b/.github/workflows/publish-package.yml @@ -3,7 +3,6 @@ on: release: types: [published] - jobs: build: runs-on: ubuntu-latest @@ -18,13 +17,13 @@ jobs: uses: actions/checkout@v2 # Setup .npmrc file to publish to GitHub Packages - # Note that the secrets.GHCR_PAT is a GitHub Personal Access Token and is defined + # Note that the secrets.GITHUB_TOKEN is a GitHub Personal Access Token and is defined # in the idsse-muppet's repository's secrets settings # - name: Create .npmrc file # run: | # echo 'registry=https://registry.npmjs.org/' > .npmrc # echo '@noaa-gsl:registry=https://npm.pkg.github.com/' >> .npmrc - # echo "//npm.pkg.github.com/:_authToken=${{ secrets.GHCR_PAT }}" >> .npmrc + # echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" >> .npmrc - name: Install node uses: actions/setup-node@v4 @@ -45,4 +44,4 @@ jobs: - name: Publish npm package run: npm publish env: - NODE_AUTH_TOKEN: ${{ secrets.GHCR_PAT }} + NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/package.json b/package.json index 3f5c26b..cd64b5e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@noaa-gsl/idsse-muppet", - "version": "0.0.5", + "version": "0.0.6", "description": "Connect to, send, and receive data over MUPPET data channels in convenient React interfaces using the MUPPETs protocol", "main": "index.js", "scripts": {