-
Notifications
You must be signed in to change notification settings - Fork 63
59 lines (48 loc) · 2.44 KB
/
checkout-path.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: checkout-path
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
defaults:
run:
shell: pwsh
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
path: gv-repo
fetch-depth: 0
- name: Install GitVersion
uses: gittools/actions/gitversion/setup@main
with:
versionSpec: '6.0.x'
- name: Determine version
id: gitversion
uses: gittools/actions/gitversion/execute@main
with:
targetPath: gv-repo
- run: |
echo "Major (major) : ${{ env.major }}"
echo "Major (env.GitVersion_Major) : ${{ env.GitVersion_Major }}"
echo "Major (steps.gitversion.outputs.major) : ${{ steps.gitversion.outputs.major }}"
echo "Major (steps.gitversion.outputs.GitVersion_Major) : ${{ steps.gitversion.outputs.GitVersion_Major }}"
echo "Minor (minor) : ${{ env.minor }}"
echo "Minor (env.GitVersion_Minor) : ${{ env.GitVersion_Minor }}"
echo "Minor (steps.gitversion.outputs.minor) : ${{ steps.gitversion.outputs.minor }}"
echo "Minor (steps.gitversion.outputs.GitVersion_Minor) : ${{ steps.gitversion.outputs.GitVersion_Minor }}"
echo "Patch (patch) : ${{ env.patch }}"
echo "Patch (env.GitVersion_Patch) : ${{ env.GitVersion_Patch }}"
echo "Patch (steps.gitversion.outputs.patch) : ${{ steps.gitversion.outputs.patch }}"
echo "Patch (steps.gitversion.outputs.GitVersion_Patch) : ${{ steps.gitversion.outputs.GitVersion_Patch }}"
echo "FullSemVer (env.fullSemVer) : ${{ env.fullSemVer }}"
echo "FullSemVer (env.GitVersion_FullSemVer) : ${{ env.GitVersion_FullSemVer }}"
echo "FullSemVer (steps.gitversion.outputs.fullSemVer) : ${{ steps.gitversion.outputs.fullSemVer }}"
echo "FullSemVer (steps.gitversion.outputs.GitVersion_FullSemVer) : ${{ steps.gitversion.outputs.GitVersion_FullSemVer }}"
name: Use variables and output