-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1244 from contentstack/main
Merge main to staging
- Loading branch information
Showing
1 changed file
with
16 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -112,6 +112,22 @@ jobs: | |
with: | ||
token: ${{ secrets.NPM_TOKEN }} | ||
package: ./packages/contentstack-export/package.json | ||
- name: Installing dependencies of audit | ||
id: audit-installation | ||
if: ${{env.release_releaseAll == 'true' || env.release_plugins_audit == 'true'}} | ||
working-directory: ./packages/contentstack-audit | ||
run: npm install | ||
- name: Compiling audit | ||
if: ${{ steps.audit-installation.conclusion == 'success' }} | ||
working-directory: ./packages/contentstack-audit | ||
run: npm run prepack | ||
- name: Publishing audit | ||
uses: JS-DevTools/[email protected] | ||
if: ${{ steps.audit-installation.conclusion == 'success' }} | ||
with: | ||
token: ${{ secrets.NPM_TOKEN }} | ||
package: ./packages/contentstack-audit/package.json | ||
access: public | ||
- name: Installing dependencies of import | ||
id: import-installation | ||
if: ${{env.release_releaseAll == 'true' || env.release_plugins_import == 'true'}} | ||
|
@@ -249,22 +265,6 @@ jobs: | |
if: ${{env.release_releaseAll == 'true' || env.release_plugins_core == 'true'}} | ||
working-directory: ./packages/contentstack | ||
run: npm install | ||
- name: Installing dependencies of audit | ||
id: audit-installation | ||
if: ${{env.release_releaseAll == 'true' || env.release_plugins_audit == 'true'}} | ||
working-directory: ./packages/contentstack-audit | ||
run: npm install | ||
- name: Compiling audit | ||
if: ${{ steps.audit-installation.conclusion == 'success' }} | ||
working-directory: ./packages/contentstack-audit | ||
run: npm run prepack | ||
- name: Publishing audit | ||
uses: JS-DevTools/[email protected] | ||
if: ${{ steps.audit-installation.conclusion == 'success' }} | ||
with: | ||
token: ${{ secrets.NPM_TOKEN }} | ||
package: ./packages/contentstack-audit/package.json | ||
access: public | ||
- name: Compiling core | ||
if: ${{ steps.core-installation.conclusion == 'success' }} | ||
working-directory: ./packages/contentstack | ||
|