Hi,
Using this github action I have an issue publishing to NPM but no obvious error logs.
The github action logs:
🦋 All files have been updated and committed. You're ready to publish!
/usr/bin/git status --porcelain
/usr/bin/git push origin HEAD:changeset-release/main --force
/home/runner/work/_actions/changesets/action/v1/dist/index.js:1
(()=>{var __webpack_modules__={87351:function(e,t,r){"use strict";
...
And then just prints a minified js file which I am assuming is ther contents of this file /home/runner/work/_actions/changesets/action/v1/dist/index.js
My github action step is setup as:
- name: Create Release Pull Request or Publish to npm
id: changesets
uses: changesets/action@v1
with:
publish: npm run ci
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
I'm at a bit of a loss where to try and debug this without an error message to work with... I enabled debug logging in github actions but that doesn't show any errors within the action itself.
Hi,
Using this github action I have an issue publishing to NPM but no obvious error logs.
The github action logs:
And then just prints a minified js file which I am assuming is ther contents of this file
/home/runner/work/_actions/changesets/action/v1/dist/index.jsMy github action step is setup as:
I'm at a bit of a loss where to try and debug this without an error message to work with... I enabled debug logging in github actions but that doesn't show any errors within the action itself.