From 9c9c131a73b8680ccdc3a2f5e4708c6d5d79ea84 Mon Sep 17 00:00:00 2001 From: Kishikawa Katsumi Date: Sat, 13 Nov 2021 18:47:29 +0900 Subject: [PATCH] Bump version to 1.2.0 --- README.md | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 21717bf8..9b30cf0b 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ jobs: ## Example ```yaml -- uses: kishikawakatsumi/xcresulttool@v1.1.0 +- uses: kishikawakatsumi/xcresulttool@v1 with: path: TestResults.xcresult if: success() || failure() @@ -65,7 +65,7 @@ jobs: run: | xcodebuild -scheme MyFramework -resultBundlePath TestResults test - - uses: kishikawakatsumi/xcresulttool@v1.1.0 + - uses: kishikawakatsumi/xcresulttool@v1 with: path: TestResults.xcresult if: success() || failure() @@ -76,7 +76,7 @@ jobs: ## Multiple result bundle paths ```yaml -- uses: kishikawakatsumi/xcresulttool@v1.1.0 +- uses: kishikawakatsumi/xcresulttool@v1 with: path: | results/Example.xcresult @@ -88,7 +88,7 @@ jobs: ## Input parameters ```yaml -- uses: kishikawakatsumi/xcresulttool@v1.1.0 +- uses: kishikawakatsumi/xcresulttool@v1 with: # Path to the xcresult bundle. path: 'TestResults.xcresult' diff --git a/package.json b/package.json index 10e5c1d1..55c52f9d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xcresulttool", - "version": "1.1.0", + "version": "1.2.0", "private": false, "description": "A GitHub Action that generates a human-readable test report from the Xcode result bundle and shows it on GitHub Checks.", "main": "lib/main.js",