Skip to content

Commit

Permalink
chore: now using proper name for publish package npm token
Browse files Browse the repository at this point in the history
  • Loading branch information
yann510 committed Nov 3, 2024
1 parent 01282bf commit 10fc6ff
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/publish-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ on:
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write

steps:
- name: Cancel previous runs
Expand Down Expand Up @@ -67,8 +70,9 @@ jobs:
if: github.ref == 'refs/heads/master'
env:
GITHUB_TOKEN: ${{ secrets.SEMANTIC_RELEASE_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
NPM_CONFIG_PROVENANCE: true
run: npx nx release -y

- name: Deploy to netlify
Expand Down
2 changes: 1 addition & 1 deletion benchmark/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export interface BenchmarkResult {
}

const benchmarkResultPath = `${__dirname}/../../../../web-app/src/assets/benchmarkResults.json`
const ignoredVersions = ['1.9.1', '1.10.0', '1.10.1', '1.10.2']
const ignoredVersions = ['1.9.1', '1.10.0', '1.10.1', '1.10.2', '1.10.3']

async function main() {
const packageVersions: string[] = JSON.parse(execSync('npm view ss-search versions --json').toString())
Expand Down

0 comments on commit 10fc6ff

Please sign in to comment.