Skip to content

Commit

Permalink
chore(cd): update cd workflow (#78)
Browse files Browse the repository at this point in the history
* use appropriate token name with granular access
* specify whether release is latest, beta, or rc (without this it will always default to latest)
  • Loading branch information
joshua-goldstein committed Jul 5, 2023
1 parent 47b8fce commit bfcfbbf
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/cd-dgraph-js-http.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ on:
description: "git tag to checkout and version to publish to npm"
required: true
type: string
releasetype:
description: "specify how to tag release on npm"
required: true
type: choice
options:
- latest
- rc
- beta
jobs:
dgraph-js-http-tests:
runs-on: ubuntu-20.04
Expand Down Expand Up @@ -66,7 +74,7 @@ jobs:
registry-url: 'https://registry.npmjs.org'
- name: Build dgraph-js-http package
run: npm ci --legacy-peer-deps
- run: npm publish
- run: npm publish --tag '${{ github.event.inputs.releasetype }}'
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_DGRAPH_JS_HTTP_TOKEN }}

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dgraph-js-http",
"version": "23.0.0-rc1",
"version": "23.0.0-rc2",
"description": "A javascript HTTP client for Dgraph",
"license": "Apache-2.0",
"repository": {
Expand Down

0 comments on commit bfcfbbf

Please sign in to comment.