Skip to content

Commit

Permalink
Update README for latest version and add a note about testing
Browse files Browse the repository at this point in the history
  • Loading branch information
davidgeary committed Nov 3, 2022
1 parent 4d98577 commit e23d149
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
```
Expand All @@ -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'
Expand All @@ -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.

0 comments on commit e23d149

Please sign in to comment.