diff --git a/.gitea/workflows/merge-master-tag-deploy.yaml b/.gitea/workflows/merge-master-tag-deploy.yaml index 1fae52a..110a616 100644 --- a/.gitea/workflows/merge-master-tag-deploy.yaml +++ b/.gitea/workflows/merge-master-tag-deploy.yaml @@ -13,6 +13,14 @@ jobs: - name: Check out repository code uses: actions/checkout@v3 + - name: Check + uses: actions/setup-node@v4 + with: + # Version Spec of the version to use in SemVer notation. + # It also emits such aliases as lts, latest, nightly and canary builds + # Examples: 12.x, 10.15.1, >=10.15.0, lts/Hydrogen, 16-nightly, latest, node + node-version: '18.20.0' + - name: Create a new release and publish package. run: | CURR_VER="$(cat package.json | jq -r .name)_v$(cat package.json | jq -r .version)"