From e23d1491fc7871e92a1ead6bd183c7895c84e560 Mon Sep 17 00:00:00 2001 From: David Geary Date: Thu, 3 Nov 2022 15:41:31 +0000 Subject: [PATCH] Update README for latest version and add a note about testing --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bbd3e1f..46b05f8 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ This action is useful for automatically updating the assembly info version of a ```yml - name: Set version in all AssemblyInfo.cs files - uses: secondbounce/assemblyinfo-update/set-version@v1 + uses: secondbounce/assemblyinfo-update@v2 with: version: '1.0.8' ``` @@ -37,7 +37,7 @@ This action is useful for automatically updating the assembly info version of a ```yml - name: Set version in .\Properties\SharedAssemblyInfo.cs id: set-assembly-version - uses: secondbounce/assemblyinfo-update/set-version@v1 + uses: secondbounce/assemblyinfo-update@v2 with: version: '2.1.16-alpha' directory: '.\Properties' @@ -47,3 +47,7 @@ This action is useful for automatically updating the assembly info version of a - name: Display the version used run: echo "{{steps.set-assembly-version.outputs.version}}" ``` + +## Development Testing + +This repo includes a test workflow - _.github/workflows/test-actions.yml_ - that is configured to run on each commit to the `develop` (and `main`) branch. This workflow runs the latest code as a test, saving the updated sample files as artifacts, should the output need to be checked.