Skip to content

Commit 588dfb4

Browse files
authored
Marketplace release pipeline (#171)
2 parents 5095f0f + 668e046 commit 588dfb4

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/MarketplaceRelease.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ jobs:
3131
- name: "Installing dependencies"
3232
run: yarn install
3333
- name: "Building native widgets and js actions"
34-
run: yarn workspaces foreach run release
34+
run: yarn workspaces foreach --all run release
3535
- name: "Updating Native Mobile Resources project"
36-
run: yarn workspaces foreach run create-modules
36+
run: yarn workspaces foreach --all run create-modules
3737
env:
3838
GH_USERNAME: ${{ secrets.GH_USERNAME }}
3939
GH_EMAIL: ${{ secrets.GH_EMAIL }}

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,18 @@
1414
"prettier": "prettier --config \"./prettier.config.js\" --write \"**/*.{js,jsx,ts,tsx,scss,html,xml,yml,yaml}\"",
1515
"format": "pretty-quick --staged --config \"./prettier.config.js\" --pattern \"**/{src,script,typings,test,**}/**/*.{js,jsx,ts,tsx,scss,html,xml,md,json}\"",
1616
"clean-all-screenshots-mac": "find . -name 'screenshot-baseline' -type d -prune -exec rm -rf '{}' +",
17-
"information:githubrelease": "yarn workspaces foreach run information:githubrelease",
17+
"information:githubrelease": "yarn workspaces foreach --all run information:githubrelease",
1818
"lint": "yarn lint:src && yarn workspaces foreach --all --parallel run lint",
1919
"lint:src": "eslint --config .eslintrc.js --ext .jsx,.js,.ts,.tsx packages/*/*/src --no-error-on-unmatched-pattern",
2020
"lint:scripts": "eslint --fix --config .eslintrc.js --ext .jsx,.js,.ts,.tsx scripts",
2121
"lint:detox": "eslint --fix --config .eslintrc.js --ext .jsx,.js,.ts,.tsx detox",
2222
"lint:configs": "eslint --fix --config .eslintrc.js --ext .jsx,.js,.ts,.tsx configs",
2323
"test": "yarn workspaces foreach --all --parallel run test",
24-
"test:e2e:android": "yarn workspaces foreach run test:e2e:android",
25-
"test:e2e:ios": "yarn workspaces foreach run test:e2e:ios",
24+
"test:e2e:android": "yarn workspaces foreach --all run test:e2e:android",
25+
"test:e2e:ios": "yarn workspaces foreach --all run test:e2e:ios",
2626
"build": "yarn workspaces foreach --all --parallel run build",
2727
"release": "yarn workspaces foreach --all --parallel run release",
28-
"release:marketplace": "yarn workspaces foreach run release:marketplace",
28+
"release:marketplace": "yarn workspaces foreach --all run release:marketplace",
2929
"release-github:widget": "node ./scripts/release/createWidgetRelease.js",
3030
"create-modules": "node ./scripts/release/createNativeModules.js",
3131
"version": "ts-node --project ./scripts/tsconfig.json ./scripts/release/BumpVersion.ts",

0 commit comments

Comments
 (0)