Skip to content

Commit

Permalink
Merge branch 'main' into release-please--branches--main
Browse files Browse the repository at this point in the history
  • Loading branch information
danieljbruce authored Mar 2, 2023
2 parents 8539a96 + 290d38e commit 9919bca
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions .kokoro/release/publish-single.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ set -eo pipefail
pwd

npm install
npm pack .
# npm provides no way to specify, observe, or predict the name of the tarball
# file it generates. We have to look in the current directory for the freshest
# .tgz file.
TARBALL=$(ls -1 -t *.tgz | head -1)

# publish library to npm
npm publish --access=public --registry=https://wombat-dressing-room.appspot.com
# publish library to npm.
npm publish --access=public --registry=https://wombat-dressing-room.appspot.com "$TARBALL"
2 changes: 1 addition & 1 deletion packages/google-cloud-dataform/samples/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"test": "c8 mocha --timeout 600000 test/*.js"
},
"dependencies": {
"@google-cloud/dataform": "^1.0.0"
"@google-cloud/dataform": "^0.4.0"
},
"devDependencies": {
"c8": "^7.1.0",
Expand Down

0 comments on commit 9919bca

Please sign in to comment.