From ef8bca0460e95d1dd6c6e936a7a3c5fb784f4c85 Mon Sep 17 00:00:00 2001 From: Angela Yu <5506675+wangela@users.noreply.github.com> Date: Mon, 29 Apr 2024 12:25:26 -0700 Subject: [PATCH] chore: update release.yml --- .github/workflows/release.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6a6c79f..b4aedea 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,7 +22,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Copy secrets to gradle.properties run: | @@ -31,6 +31,14 @@ jobs: env: GRADLE_PUBLISH_KEY: ${{ secrets.GRADLE_PUB_KEY }} GRADLE_PUBLISH_SECRET: ${{ secrets.GRADLE_PUB_SEC }} + + - name: Set up node + uses: actions/setup-node@v4 + with: + node-version: '14' + + - name: Install conventionalcommits + run: npm i -D conventional-changelog-conventionalcommits - name: Semantic Release uses: cycjimmy/semantic-release-action@v4.1.0