Skip to content

Commit c246a47

Browse files
authored
Merge pull request #173 from lambda-curry/changeset-release/main
2 parents 75e706f + 2d43d1f commit c246a47

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/release.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,17 @@ jobs:
3535
- name: Install Dependencies
3636
run: yarn install --immutable
3737

38+
- name: Verify npm and OIDC setup
39+
run: |
40+
echo "npm version: $(npm --version)"
41+
echo "Node version: $(node --version)"
42+
# Check if we're in a GitHub Actions OIDC environment
43+
if [ -n "$ACTIONS_ID_TOKEN_REQUEST_URL" ]; then
44+
echo "✓ OIDC environment detected"
45+
else
46+
echo "⚠ OIDC environment not detected"
47+
fi
48+
3849
- name: Create Release Pull Request or Publish to npm
3950
id: changesets
4051
uses: changesets/action@v1

0 commit comments

Comments
 (0)