From 668e0461ce3eddf35b931552770982b23178d0cc Mon Sep 17 00:00:00 2001 From: Uraz Akgultan Date: Thu, 29 Aug 2024 13:05:57 +0200 Subject: [PATCH] fix: marketplace release pipeline --- .github/workflows/MarketplaceRelease.yml | 4 ++-- package.json | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/MarketplaceRelease.yml b/.github/workflows/MarketplaceRelease.yml index 58cd36fb8..0690790b0 100644 --- a/.github/workflows/MarketplaceRelease.yml +++ b/.github/workflows/MarketplaceRelease.yml @@ -31,9 +31,9 @@ jobs: - name: "Installing dependencies" run: yarn install - name: "Building native widgets and js actions" - run: yarn workspaces foreach run release + run: yarn workspaces foreach --all run release - name: "Updating Native Mobile Resources project" - run: yarn workspaces foreach run create-modules + run: yarn workspaces foreach --all run create-modules env: GH_USERNAME: ${{ secrets.GH_USERNAME }} GH_EMAIL: ${{ secrets.GH_EMAIL }} diff --git a/package.json b/package.json index cef80c058..e1cb4e6e8 100644 --- a/package.json +++ b/package.json @@ -14,18 +14,18 @@ "prettier": "prettier --config \"./prettier.config.js\" --write \"**/*.{js,jsx,ts,tsx,scss,html,xml,yml,yaml}\"", "format": "pretty-quick --staged --config \"./prettier.config.js\" --pattern \"**/{src,script,typings,test,**}/**/*.{js,jsx,ts,tsx,scss,html,xml,md,json}\"", "clean-all-screenshots-mac": "find . -name 'screenshot-baseline' -type d -prune -exec rm -rf '{}' +", - "information:githubrelease": "yarn workspaces foreach run information:githubrelease", + "information:githubrelease": "yarn workspaces foreach --all run information:githubrelease", "lint": "yarn lint:src && yarn workspaces foreach --all --parallel run lint", "lint:src": "eslint --config .eslintrc.js --ext .jsx,.js,.ts,.tsx packages/*/*/src --no-error-on-unmatched-pattern", "lint:scripts": "eslint --fix --config .eslintrc.js --ext .jsx,.js,.ts,.tsx scripts", "lint:detox": "eslint --fix --config .eslintrc.js --ext .jsx,.js,.ts,.tsx detox", "lint:configs": "eslint --fix --config .eslintrc.js --ext .jsx,.js,.ts,.tsx configs", "test": "yarn workspaces foreach --all --parallel run test", - "test:e2e:android": "yarn workspaces foreach run test:e2e:android", - "test:e2e:ios": "yarn workspaces foreach run test:e2e:ios", + "test:e2e:android": "yarn workspaces foreach --all run test:e2e:android", + "test:e2e:ios": "yarn workspaces foreach --all run test:e2e:ios", "build": "yarn workspaces foreach --all --parallel run build", "release": "yarn workspaces foreach --all --parallel run release", - "release:marketplace": "yarn workspaces foreach run release:marketplace", + "release:marketplace": "yarn workspaces foreach --all run release:marketplace", "release-github:widget": "node ./scripts/release/createWidgetRelease.js", "create-modules": "node ./scripts/release/createNativeModules.js", "version": "ts-node --project ./scripts/tsconfig.json ./scripts/release/BumpVersion.ts",