Skip to content

Commit 99ccbd6

Browse files
authored
Merge pull request #748 from contentstack/staging
Staging to main
2 parents 32d36b5 + 76d2ed4 commit 99ccbd6

64 files changed

Lines changed: 9586 additions & 60 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/config/release.json

100644100755
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
"bootstrap": false,
1616
"bulk-publish": false,
1717
"dev-dependencies": false,
18+
"launch": false,
1819
"core": false
1920
}
2021
}

.github/workflows/release.yml

100644100755
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,21 @@ jobs:
204204
with:
205205
token: ${{ secrets.NPM_TOKEN }}
206206
package: ./packages/contentstack-bulk-publish/package.json
207+
- name: Installing dependencies of launch
208+
id: launch-installation
209+
if: ${{env.release_releaseAll == 'true' || env.release_plugins_launch == 'true'}}
210+
working-directory: ./packages/contentstack-launch
211+
run: npm install
212+
- name: Compiling launch
213+
if: ${{ steps.launch-installation.conclusion == 'success' }}
214+
working-directory: ./packages/contentstack-launch
215+
run: npm run prepack
216+
- name: Publishing launch
217+
uses: JS-DevTools/npm-publish@v1
218+
if: ${{ steps.launch-installation.conclusion == 'success' }}
219+
with:
220+
token: ${{ secrets.NPM_TOKEN }}
221+
package: ./packages/contentstack-launch/package.json
207222
- name: Installing dependencies of core
208223
id: core-installation
209224
if: ${{env.release_releaseAll == 'true' || env.release_plugins_core == 'true'}}

0 commit comments

Comments
 (0)