We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ef8639 commit 3f95448Copy full SHA for 3f95448
.github/workflows/ci.yml
@@ -93,6 +93,12 @@ jobs:
93
run: npm --version
94
- name: Check npm configuration
95
run: npm config list
96
+ - name: Debug repository information
97
+ run: |
98
+ echo "GitHub Repository: ${{ github.repository }}"
99
+ echo "GitHub Repository Owner: ${{ github.repository_owner }}"
100
+ echo "GitHub Repository Name: ${{ github.event.repository.name }}"
101
+ cat package.json | grep -A 2 '"repository"'
102
- name: Publish to npm
103
if: github.actor != 'dependabot[bot]' && github.actor != 'dependabot-preview[bot]'
104
run: npm publish --tag ${{ env.GITHUB_REF_SLUG }}
0 commit comments