-
Notifications
You must be signed in to change notification settings - Fork 1
feat(iam): access key operations #56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -22,7 +22,7 @@ jobs: | |
| with: | ||
| fetch-depth: 0 | ||
|
|
||
| # Set up Node.js | ||
| # Set up Node.js with npm provenance | ||
| - uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: '22' | ||
|
|
@@ -32,27 +32,23 @@ jobs: | |
| - run: npm run lint | ||
|
|
||
| - name: Build packages | ||
| run: | | ||
| npm run build | ||
| run: npm run build | ||
|
|
||
| - name: Lint packages | ||
| run: | | ||
| npm run publint | ||
| run: npm run publint | ||
|
|
||
| - name: Test packages | ||
| env: | ||
| TIGRIS_STORAGE_BUCKET: ${{ secrets.TIGRIS_STORAGE_BUCKET }} | ||
| TIGRIS_STORAGE_ACCESS_KEY_ID: ${{ secrets.TIGRIS_STORAGE_ACCESS_KEY_ID }} | ||
| TIGRIS_STORAGE_SECRET_ACCESS_KEY: ${{ secrets.TIGRIS_STORAGE_SECRET_ACCESS_KEY }} | ||
| TIGRIS_STORAGE_ENDPOINT: ${{ secrets.TIGRIS_STORAGE_ENDPOINT }} | ||
| run: | | ||
| npm run test | ||
| run: npm run test | ||
|
|
||
| - run: npm audit signatures | ||
|
|
||
| # Release to GitHub and NPM | ||
| # Release packages in dependency order | ||
| - name: Release | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
| run: npm run release | ||
| run: ./scripts/release.sh | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Missing NPM_TOKEN breaks npm package publishingHigh Severity The |
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
NPM_TOKEN environment variable was removed but @semantic-release/npm plugin still requires authentication to publish packages to npm. The workflow will fail when attempting to publish.
Prompt To Fix With AI
This is a comment left during a code review. Path: .github/workflows/release.yaml Line: 52:54 Comment: NPM_TOKEN environment variable was removed but @semantic-release/npm plugin still requires authentication to publish packages to npm. The workflow will fail when attempting to publish. How can I resolve this? If you propose a fix, please make it concise.