From d81698f43c3d1bc2ac2b3e225c73ea1ad1f905e0 Mon Sep 17 00:00:00 2001 From: Masafumi Koba <473530+ybiquitous@users.noreply.github.com> Date: Mon, 5 Apr 2021 13:42:03 +0900 Subject: [PATCH 1/2] fix(actions): replace `softprops/action-gh-release` with `gh release` (#922) --- .github/workflows/release.yml | 5 +---- test/__snapshots__/init.test.js.snap | 5 +---- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9062d54c..241dc963 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,9 +20,6 @@ jobs: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - run: echo ::set-output name=tag::${GITHUB_REF/refs\/tags\//} id: get_tag - - uses: softprops/action-gh-release@v1 - with: - body: | - See the [changelog](https://github.com/${{ github.repository }}/blob/${{ steps.get_tag.outputs.tag }}/CHANGELOG.md) for more details. + - run: gh release create '${{ steps.get_tag.outputs.tag }}' --notes 'See the [changelog](https://github.com/${{ github.repository }}/blob/${{ steps.get_tag.outputs.tag }}/CHANGELOG.md) for more details.' env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/test/__snapshots__/init.test.js.snap b/test/__snapshots__/init.test.js.snap index 4e299951..af80e160 100644 --- a/test/__snapshots__/init.test.js.snap +++ b/test/__snapshots__/init.test.js.snap @@ -206,10 +206,7 @@ jobs: NODE_AUTH_TOKEN: \${{ secrets.NPM_TOKEN }} - run: echo ::set-output name=tag::\${GITHUB_REF/refs\\\\/tags\\\\//} id: get_tag - - uses: softprops/action-gh-release@v1 - with: - body: | - See the [changelog](https://github.com/\${{ github.repository }}/blob/\${{ steps.get_tag.outputs.tag }}/CHANGELOG.md) for more details. + - run: gh release create '\${{ steps.get_tag.outputs.tag }}' --notes 'See the [changelog](https://github.com/\${{ github.repository }}/blob/\${{ steps.get_tag.outputs.tag }}/CHANGELOG.md) for more details.' env: GITHUB_TOKEN: \${{ secrets.GITHUB_TOKEN }} " From c8fe7bcb7c4c7aac79b7e9defd9fdb3ee1bc3580 Mon Sep 17 00:00:00 2001 From: Masafumi Koba <473530+ybiquitous@users.noreply.github.com> Date: Mon, 5 Apr 2021 13:43:08 +0900 Subject: [PATCH 2/2] chore(release): 12.2.1 --- CHANGELOG.md | 6 ++++++ package-lock.json | 2 +- package.json | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 38cca02d..42215837 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [12.2.1](https://github.com/ybiquitous/ybiq/compare/v12.2.0...v12.2.1) (2021-04-05) + +### Bug Fixes + +- **actions:** replace `softprops/action-gh-release` with `gh release` ([#922](https://github.com/ybiquitous/ybiq/issues/922)) ([d81698f](https://github.com/ybiquitous/ybiq/commit/d81698f43c3d1bc2ac2b3e225c73ea1ad1f905e0)) + ## [12.2.0](https://github.com/ybiquitous/ybiq/compare/v12.1.0...v12.2.0) (2021-04-02) ### Features diff --git a/package-lock.json b/package-lock.json index f4085604..2edb1aea 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "ybiq", - "version": "12.2.0", + "version": "12.2.1", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index 6be4eba1..0f3b783c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ybiq", - "version": "12.2.0", + "version": "12.2.1", "description": "Useful command-line tools for Node.js project", "author": "Masafumi Koba ", "license": "MIT",