Skip to content

Commit

Permalink
Marketplace release pipeline (#171)
Browse files Browse the repository at this point in the history
  • Loading branch information
UrazAkgultan authored Aug 29, 2024
2 parents 5095f0f + 668e046 commit 588dfb4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/MarketplaceRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 588dfb4

Please sign in to comment.