File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change 13
13
name : Version with GitVersion ${{ vars.GIT_VERSION }}
14
14
runs-on : ubuntu-latest
15
15
outputs :
16
- ASSEMBLY_VERSION : ${{ steps.gitversion.outputs.assemblySemVer }}
16
+ ASSEMBLY_VERSION : ${{ steps.gitversion.outputs.assemblySemVer }}.${{ github.github.run_number }}
17
+ ASSEMBLY_INFORMATIONAL_VERSION : ${{ steps.gitversion.outputs.assemblySemVer }}.${{ github.github.run_number }}+${{ step.gitversion.outputs.sha }}
18
+ FILE_VERSION : ${{ steps.gitversion.outputs.assemblySemVer }}.${{ github.github.run_number }}
19
+ PACKAGE_VERSION : ${{ steps.gitversion.outputs.assemblySemVer }}.${{ github.github.run_number }}
17
20
steps :
18
21
- uses : actions/checkout@v3
19
22
with :
38
41
ASSEMBLY_VERSION : ${{ needs.version.outputs.ASSEMBLY_VERSION }}
39
42
steps :
40
43
- uses : actions/checkout@v3
41
- - run : ' echo version: ${{ env.version }}'
42
- - run : ' echo versionSuffix: ${{ env.versionSuffix }}'
44
+ - run : ' echo Assembly Version: ${{ env.ASSEMBLY_VERSION }}'
45
+ - run : ' echo File Version: ${{ env.FILE_VERSION }}'
46
+ - run : ' echo Assembly Informational Version: ${{ env.ASSEMBLY_INFORMATIONAL_VERSION }}'
47
+ - run : ' echo Package Version: ${{ env.PACKAGE_VERSION }}'
43
48
- name : Install .NET ${{ vars.DOTNET_VERSION }}
44
49
uses : actions/setup-dotnet@v4
45
50
with :
You can’t perform that action at this time.
0 commit comments