We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 75e706f + 2d43d1f commit c246a47Copy full SHA for c246a47
.github/workflows/release.yml
@@ -35,6 +35,17 @@ jobs:
35
- name: Install Dependencies
36
run: yarn install --immutable
37
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
+
49
- name: Create Release Pull Request or Publish to npm
50
id: changesets
51
uses: changesets/action@v1
0 commit comments