We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bdbcbf7 commit a97f0f9Copy full SHA for a97f0f9
.github/workflows/ci.yml
@@ -195,7 +195,9 @@ jobs:
195
run: npm run build:release
196
197
- name: Upload npm folder
198
- uses: actions/upload-pages-artifact@v1
+ uses: actions/upload-artifact@v3
199
with:
200
name: npmDist
201
- path: ./
+ path: |
202
+ ./
203
+ !./node_modules
.github/workflows/publish.yml
@@ -14,7 +14,7 @@ jobs:
14
npm-publish:
15
environment:
16
name: npm-publish
17
- url: https://www.npmjs.com/package/graphql-voyager/v/${GITHUB_REF/refs\/tags\//}
+ url: https://www.npmjs.com/package/graphql-voyager/v/${{github.ref_name}}
18
needs: ci
19
permissions:
20
contents: read # for actions/checkout
0 commit comments