From 392f054e0b265e17e87c4a1884cea35e570f6316 Mon Sep 17 00:00:00 2001 From: Ben Date: Mon, 25 Apr 2022 21:58:47 +0300 Subject: [PATCH 1/2] test manually update version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index af26f51..d0ea6f6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "automate-pull-request", - "version": "1.0.1", + "version": "1.0.6", "description": "", "main": "index.js", "scripts": { From 2807e0c7a6dd2bf1f2f0c58b5c786dbb3e591567 Mon Sep 17 00:00:00 2001 From: Ben Date: Mon, 25 Apr 2022 22:00:08 +0300 Subject: [PATCH 2/2] reset bump version actions --- .github/workflows/bumpversion.yml | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) diff --git a/.github/workflows/bumpversion.yml b/.github/workflows/bumpversion.yml index 01f3c30..3cf72c6 100644 --- a/.github/workflows/bumpversion.yml +++ b/.github/workflows/bumpversion.yml @@ -9,12 +9,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - # with: - # token: ${{ secrets.TOKEN }} - # # ref: develop - - # - name: pull latest develop branch changes - # run: git pull origin develop + with: + token: ${{ secrets.TOKEN }} + ref: develop - name: set global attributes run: | @@ -22,17 +19,11 @@ jobs: git config --global user.name "Benedict Steven" git remote set-url origin https://x-access-token:${{ secrets.TOKEN }}@github.com/${{ github.repository }} - name: Build - run: | - git fetch --all - git checkout develop - npm install + run: npm install - name: Build - run: | - git fetch --all - git checkout develop - npm run build + run: npm run build - name: bump version actions uses: bmsteven/bump-version@1.0.3