From e608ae90ab4cb4d3c8214a178810e4a6cd1e7471 Mon Sep 17 00:00:00 2001 From: ChanTsune <41658782+ChanTsune@users.noreply.github.com> Date: Mon, 7 Nov 2022 13:44:58 +0900 Subject: [PATCH] Release 2.8.0 - Update - @actions/core from 1.9.1 to 1.10.0 - @actions/github from 5.0.3 to 5.11 --- README.md | 4 ++-- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index ed31306f..02bc9b03 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ jobs: release: runs-on: ubuntu-latest steps: - - uses: ChanTsune/release-with-commit@v2.7.0 + - uses: ChanTsune/release-with-commit@v2.8.0 with: regexp: "Release ((\\d+([.]\\d+)*)-(alpha|beta|rc)\\d*)((\\s|\\S)*)" regexp_options: "us" @@ -56,7 +56,7 @@ jobs: draft: false prerelease: false env: - GITHUB_TOKEN: '${{secrets.GITHUB_TOKEN}}' # This token is provided by Actions, you do not need to create your own token + GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}' # This token is provided by Actions, you do not need to create your own token ``` This will create a [Release](https://help.github.com/en/articles/creating-releases), as well as a [`release` event](https://developer.github.com/v3/activity/events/types/#releaseevent), which could be handled by a third party service, or by GitHub Actions for additional uses, for example the [`@actions/upload-release-asset`](https://www.github.com/actions/upload-release-asset) GitHub Action. This uses the `GITHUB_TOKEN` provided by the [virtual environment](https://help.github.com/en/github/automating-your-workflow-with-github-actions/virtual-environments-for-github-actions#github_token-secret), so no new token is needed. diff --git a/package-lock.json b/package-lock.json index d213b859..2dde55eb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { "name": "release-with-commit", - "version": "2.7.0", + "version": "2.8.0", "lockfileVersion": 2, "requires": true, "packages": { "": { - "version": "2.7.0", + "version": "2.8.0", "license": "MIT", "dependencies": { "@actions/core": "^1.10.0", diff --git a/package.json b/package.json index 9ff96ca9..3e077c1a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "release-with-commit", - "version": "2.7.0", + "version": "2.8.0", "private": true, "description": "Release with commit", "author": "ChanTsune ",