Skip to content

Commit

Permalink
chore: Update the dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
scottlovegrove committed Aug 18, 2024
1 parent f9223a1 commit 1b60664
Show file tree
Hide file tree
Showing 4 changed files with 370 additions and 386 deletions.
52 changes: 26 additions & 26 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,33 +1,33 @@
name: Release @doist/eslint-plugin-doist package

on:
push:
tags:
- 'v*'
push:
tags:
- "v*"

jobs:
publish:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
publish:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v4

# Publish to GitHub package registry
- uses: actions/setup-node@v1
with:
node-version: 12
registry-url: https://npm.pkg.github.com/
scope: '@doist'
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
# Publish to GitHub package registry
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://npm.pkg.github.com/
scope: "@doist"
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

# Publish to npm registry
- uses: actions/setup-node@v1
with:
node-version: 12
registry-url: https://registry.npmjs.org/
scope: '@doist'
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_PUBLISH_TOKEN}}
# Publish to npm registry
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://registry.npmjs.org/
scope: "@doist"
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_PUBLISH_TOKEN}}
1 change: 1 addition & 0 deletions node-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v20
Loading

0 comments on commit 1b60664

Please sign in to comment.