Skip to content

Commit

Permalink
Update RELEASE.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
johntalton authored Mar 28, 2024
1 parent 1690a94 commit 2d42160
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions .github/workflows/RELEASE.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,10 @@ jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.1.0
- uses: actions/checkout@v4
# Publish to NPM
- uses: actions/setup-node@v3.5.1
- uses: actions/setup-node@v4
with:
node-version: '14'
registry-url: 'https://registry.npmjs.org/'
- run: npm install
- run: npm run build --if-present
Expand All @@ -19,10 +18,10 @@ jobs:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

# Publish to GitHub
- uses: actions/setup-node@v3.5.1
with:
node-version: '14'
registry-url: 'https://npm.pkg.github.com/'
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# - uses: actions/setup-node@v3.5.1
# with:
# node-version: '14'
# registry-url: 'https://npm.pkg.github.com/'
# - run: npm publish
# env:
# NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 2d42160

Please sign in to comment.