Skip to content

Commit

Permalink
chore: Fix test services on bump (#994)
Browse files Browse the repository at this point in the history
* chore: Fix test services on bump

* Fix missing yarn
  • Loading branch information
marikaner authored Feb 10, 2021
1 parent 3c5eabf commit 38f4ad1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ jobs:
- name: Stable Release
run: |
echo '//registry.npmjs.org/:_authToken=${NPM_TOKEN}' >> .npmrc
yarn lerna publish from-git --force-publish -y
yarn lerna publish from-package --force-publish -y
env:
NPM_TOKEN: ${{ secrets.NPMJS_ACCESS_TOKEN }}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@
"generate:test-services:v4": "yarn generate v4 && yarn lint:fix && yarn --frozen-lockfile",
"generate:test-services:openapi": "yarn generate openapi && yarn lint:fix && yarn --frozen-lockfile",
"generate:test-services:e2e": "yarn generate e2e && yarn lint:fix && yarn --frozen-lockfile",
"generate:test-services": "yarn generate all",
"generate:test-services": "yarn generate all && yarn lint:fix && yarn --frozen-lockfile",
"generate": "yarn workspace @sap-cloud-sdk/generator run compile && yarn ts-node scripts/generate-test-services.ts",
"compile": "yarn lerna run compile",
"doc": "node scripts/generate-docs.js",
"version": "node scripts/after-bump.js && yarn doc && git add .",
"version": "node scripts/after-bump.js && yarn generate:test-services && yarn doc && git add .",
"lint": "yarn eslint --ext .ts .",
"lint:fix": "yarn lint --fix",
"lint:fix-cached": "yarn lint:fix --cache",
Expand Down

0 comments on commit 38f4ad1

Please sign in to comment.