diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 262f7b0..74f86d4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,6 +26,8 @@ jobs: uses: RDXWorks-actions/setup-node@main with: node-version: 'lts/*' + - name: Upgrade npm + run: npm i -g npm@^11.5.1 - name: Install dependencies run: npm ci - name: Prepare @@ -33,28 +35,6 @@ jobs: - name: Release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - NPM_TOKEN: ${{ secrets.NPMJS_TOKEN }} run: | - npx semantic-release | tee out + env -u NODE_AUTH_TOKEN -u NPM_CONFIG_USERCONFIG npx semantic-release | tee out echo "RELEASE_VERSION=$(grep 'Created tag ' out | awk -F 'Created tag ' '{print $2}')" >> $GITHUB_ENV - - # Snyk SBOM - # - uses: radixdlt/public-iac-resuable-artifacts/fetch-secrets@main - # with: - # role_name: ${{ secrets.AWS_ROLE_NAME_SNYK_SECRET }} - # app_name: 'typescript-rola' - # step_name: 'snyk-sbom' - # secret_prefix: 'SNYK' - # secret_name: ${{ secrets.AWS_SECRET_NAME_SNYK }} - # parse_json: true - # - name: Generate SBOM - # uses: snyk/actions/node@b98d498629f1c368650224d6d212bf7dfa89e4bf # v0.4.0 - # with: - # args: --all-projects --org=${{ env.SNYK_PROJECTS_ORG_ID }} --format=cyclonedx1.4+json --json-file-output sbom.json - # command: sbom - # - name: Upload SBOM - # uses: AButler/upload-release-assets@c94805dc72e4b20745f543da0f62eaee7722df7a # v2.0.2 - # with: - # files: sbom.json - # repo-token: ${{ secrets.GITHUB_TOKEN }} - # release-tag: ${{ env.RELEASE_VERSION }}