Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,17 @@ jobs:
- name: Install Dependencies
run: yarn install --immutable

- name: Verify npm and OIDC setup
run: |
echo "npm version: $(npm --version)"
echo "Node version: $(node --version)"
# Check if we're in a GitHub Actions OIDC environment
if [ -n "$ACTIONS_ID_TOKEN_REQUEST_URL" ]; then
echo "✓ OIDC environment detected"
else
echo "⚠ OIDC environment not detected"
fi

- name: Create Release Pull Request or Publish to npm
id: changesets
uses: changesets/action@v1
Expand Down
Loading