Skip to content

Commit

Permalink
Add more debugging to the "create NPM package" step
Browse files Browse the repository at this point in the history
  • Loading branch information
achew22 committed Mar 19, 2021
1 parent 97c9ae2 commit 10eca7c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/release.yaml
Expand Up @@ -95,6 +95,8 @@ jobs:
- name: Create NPM Package
run: |
pwd
find .
cp "README.md" "npm-staging/README.md"
cp "release/npm/index.js" "npm-staging/index.js"
cp ".npmrc" "npm-staging/.npmrc"
Expand Down

2 comments on commit 10eca7c

@joeljeske
Copy link
Contributor

@joeljeske joeljeske commented on 10eca7c Mar 22, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@achew22, I see its not finding the tags...
actions/checkout#448 might be a bug in GH actions checkout. Looks like we could add fetch-depth: 0 to the checkout to both checkouts to get all refs until its fixed

@achew22
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's move discussion to #467

Please sign in to comment.