From 6156329aa9e03f45fcf3f512ea373f865edc84cf Mon Sep 17 00:00:00 2001 From: Huaichao Wang Date: Fri, 30 Jun 2023 13:26:58 +0800 Subject: [PATCH] feat: bump version --- .github/workflows/bump-version.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/bump-version.yml diff --git a/.github/workflows/bump-version.yml b/.github/workflows/bump-version.yml new file mode 100644 index 0000000..63f1ec0 --- /dev/null +++ b/.github/workflows/bump-version.yml @@ -0,0 +1,17 @@ +name: Bump Version +run-name: ${{ github.actor }} is bumping new version on ${{ github.ref_name }} +on: [ workflow_dispatch ] + +permissions: + contents: write + pull-requests: write + +jobs: + release-please: + runs-on: ubuntu-latest + steps: + - uses: google-github-actions/release-please-action@v3 + with: + release-type: node + package-name: release-please-action + default-branch: ${{ github.ref_name }}