From 898a85881d00f10f1ddc66d430f80b89d6ed467d Mon Sep 17 00:00:00 2001 From: Bret Comnes <166301+bcomnes@users.noreply.github.com> Date: Tue, 8 Feb 2022 11:24:07 -0800 Subject: [PATCH] Update release.yml --- .github/workflows/release.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4038c17..9632920 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,17 +8,18 @@ on: required: true env: - node_version: 14 + node_version: lts/* + FORCE_COLOR: 2 jobs: version_and_release: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v2 with: # fetch full history so things like auto-changelog work properly fetch-depth: 0 - - uses: actions/setup-node@v2.5.1 + - uses: actions/setup-node@v2 with: node-version: ${{ env.node_version }} # setting a registry enables the NODE_AUTH_TOKEN env variable where we can set an npm token. REQUIRED