Skip to content

Commit

Permalink
Try to get package.json:files working
Browse files Browse the repository at this point in the history
  • Loading branch information
dforsber committed May 11, 2020
1 parent 6b16db4 commit 7e852ca
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ jobs:
with:
node-version: 12
registry-url: https://registry.npmjs.org/
- run: yarn publish --access public
- run: |
yarn build
yarn publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
Expand All @@ -43,6 +45,8 @@ jobs:
always-auth: true
registry-url: https://npm.pkg.github.com/
- name: Publish to GitHub packages repository
run: yarn publish
run: |
yarn build
yarn publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dforsber/s3-selectable",
"version": "0.0.8",
"version": "0.0.9",
"description": "S3 Select over Glue Table",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down

0 comments on commit 7e852ca

Please sign in to comment.