From 0b837de7302269f12fb0225ea26960bdd85d371a Mon Sep 17 00:00:00 2001 From: Gabriel Tiburcio Date: Mon, 26 Feb 2024 11:39:57 -0300 Subject: [PATCH] Testing semantic release with .cjs config file --- .github/workflows/release.yml | 10 ++-------- release.config.js => release.config.cjs | 0 2 files changed, 2 insertions(+), 8 deletions(-) rename release.config.js => release.config.cjs (100%) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1957189ae..895447820 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,15 +4,9 @@ on: workflow_dispatch: jobs: - # release is done from main branch. - confirm-public-repo-main-branch: - name: 'Confirm release is run from public/main branch' - uses: mParticle/mparticle-workflows/.github/workflows/sdk-release-repo-branch-check.yml@main - release: name: Perform Release runs-on: ubuntu-latest - needs: confirm-public-repo-main-branch env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -39,7 +33,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 - with: + with: node-version: 'latest' - name: Install Dependencies @@ -57,4 +51,4 @@ jobs: if: failure() with: name: npm-logs - path: ~/.npm/_logs \ No newline at end of file + path: ~/.npm/_logs diff --git a/release.config.js b/release.config.cjs similarity index 100% rename from release.config.js rename to release.config.cjs