From e3088100d3705fc8f17739b76661367ca01977fc Mon Sep 17 00:00:00 2001 From: Enrico Minack Date: Wed, 13 Jan 2021 21:44:32 +0100 Subject: [PATCH] Releasing v1.7 --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 538be801..67099d5a 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ You can add this action to your GitHub workflow as follows: ```yaml - name: Publish Unit Test Results - uses: EnricoMi/publish-unit-test-result-action@v1.6 + uses: EnricoMi/publish-unit-test-result-action@v1.7 if: always() with: github_token: ${{ secrets.GITHUB_TOKEN }} @@ -65,7 +65,7 @@ The `if: always()` clause guarantees that this action always runs, even if earli You can use a pre-built docker image from [GitHub Container Registry](https://docs.github.com/en/free-pro-team@latest/packages/getting-started-with-github-container-registry/about-github-container-registry) (Beta). This way, the action is not build for every run of your workflow, and you are guaranteed to get the exact same action build: ```yaml - uses: docker://ghcr.io/enricomi/publish-unit-test-result-action:v1.6 + uses: docker://ghcr.io/enricomi/publish-unit-test-result-action:latest ``` ***Note:** GitHub Container Registry is currently in [beta phase](https://docs.github.com/en/free-pro-team@latest/packages/getting-started-with-github-container-registry/about-github-container-registry).* @@ -240,7 +240,7 @@ jobs: path: artifacts - name: Publish Unit Test Results - uses: EnricoMi/publish-unit-test-result-action@v1.6 + uses: EnricoMi/publish-unit-test-result-action@v1.7 with: check_name: Unit Test Results github_token: ${{ secrets.GITHUB_TOKEN }}