diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 972201e..beb442d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -60,7 +60,7 @@ jobs: - uses: actions/checkout@v4 if: ${{ steps.release-plugin.conclusion == 'success' }} with: - ref: 'prod-qa-pipeline' + ref: 'main' - uses: EndBug/add-and-commit@v9 if: ${{ steps.release-plugin.conclusion == 'success' }} with: diff --git a/.github/workflows/sca-scan.yml b/.github/workflows/sca-scan.yml index f09161f..2307d48 100644 --- a/.github/workflows/sca-scan.yml +++ b/.github/workflows/sca-scan.yml @@ -13,3 +13,6 @@ jobs: SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} with: args: --all-projects --fail-on=all + json: true + continue-on-error: true + - uses: contentstack/sca-policy@main diff --git a/src/config/index.ts b/src/config/index.ts index fbb2f7f..fe51945 100755 --- a/src/config/index.ts +++ b/src/config/index.ts @@ -16,6 +16,7 @@ const config = { CSR: './', ANGULAR: './dist', NUXT: './.output', + ASTRO: './dist', VUEJS: './dist', REMIX: './build', OTHER: './', @@ -27,6 +28,7 @@ const config = { { name: 'CSR (Client-Side Rendered)', value: 'CSR' }, { name: 'Angular', value: 'ANGULAR' }, { name: 'Nuxt', value: 'NUXT' }, + { name: 'Astro', value: 'ASTRO' }, { name: 'VueJs', value: 'VUEJS' }, { name: 'Remix', value: 'REMIX' }, { name: 'Other', value: 'OTHER' }, @@ -47,7 +49,7 @@ const config = { VariablePreparationTypeOptions.SKIP_SETUP, ], variableType: '', - supportedFrameworksForServerCommands: ['ANGULAR', 'OTHER', 'REMIX', 'NUXT'], + supportedFrameworksForServerCommands: ['ANGULAR', 'OTHER', 'REMIX', 'NUXT', 'ASTRO'], supportedFileUploadMethods: ['last file upload', 'new file'] };