Skip to content

Commit 032b5dd

Browse files
Merge pull request #1077 from contentstack/staging
Merge staging to main
2 parents 92b0d8d + 7e53052 commit 032b5dd

87 files changed

Lines changed: 4976 additions & 1723 deletions

File tree

Some content is hidden

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

.github/workflows/release.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,22 @@ jobs:
249249
if: ${{env.release_releaseAll == 'true' || env.release_plugins_core == 'true'}}
250250
working-directory: ./packages/contentstack
251251
run: npm install
252+
- name: Installing dependencies of audit
253+
id: audit-installation
254+
if: ${{env.release_releaseAll == 'true' || env.release_plugins_audit == 'true'}}
255+
working-directory: ./packages/contentstack-audit
256+
run: npm install
257+
- name: Compiling audit
258+
if: ${{ steps.audit-installation.conclusion == 'success' }}
259+
working-directory: ./packages/contentstack-audit
260+
run: npm run prepack
261+
- name: Publishing audit
262+
uses: JS-DevTools/npm-publish@v2.2.1
263+
if: ${{ steps.audit-installation.conclusion == 'success' }}
264+
with:
265+
token: ${{ secrets.NPM_TOKEN }}
266+
package: ./packages/contentstack-audit/package.json
267+
access: public
252268
- name: Compiling core
253269
if: ${{ steps.core-installation.conclusion == 'success' }}
254270
working-directory: ./packages/contentstack

0 commit comments

Comments
 (0)