From a065325159318b6f109eeb5b4145281175048219 Mon Sep 17 00:00:00 2001 From: junners Date: Fri, 31 May 2024 22:57:51 -0700 Subject: [PATCH] build: use github bot to bump package versions and jq --- .github/workflows/deploy-BETA.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-BETA.yml b/.github/workflows/deploy-BETA.yml index 69d3187..0f8f636 100644 --- a/.github/workflows/deploy-BETA.yml +++ b/.github/workflows/deploy-BETA.yml @@ -13,7 +13,7 @@ on: branches: - master -permissions: read-all +permissions: write-all concurrency: group: ${{ github.ref_name }}-${{ github.workflow }} @@ -50,7 +50,7 @@ jobs: echo $npm_package_version - run: npx node-jq --arg version "$npm_package_version" '.version=$version' package.json > package2.json && rm package.json && mv package2.json package.json - run: | - git commit -am "ci: update package json to $npm_package_version [skip ci]" + git commit -am "ci: update package json to $npm_package_version [skip ci]" --no-verify git push - run: npm version $npm_package_version shell: bash