Skip to content

Commit 1372faa

Browse files
committed
Fixing workflows again. [skip ci]
1 parent 6806526 commit 1372faa

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

.github/workflows/_build.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
with:
1717
fetch-depth: 0
1818

19-
- name: Nerdbank.GitVersioning
19+
- name: Version stamping
2020
id: vsix_version
2121
uses: dotnet/nbgv@e6830c173ef6061fe122d7205ac31bb2f8cca842
2222
with:
@@ -36,4 +36,8 @@ jobs:
3636
uses: actions/upload-artifact@v3
3737
with:
3838
name: ${{ github.event.repository.name }}.vsix
39-
path: /_built/**/*.vsix
39+
path: /_built/**/*.vsix
40+
41+
- name: Echo version
42+
run: |
43+
Write-Output ${{ steps.vsix_version.outputs.SimpleVersion }}

.github/workflows/publish.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ jobs:
2222
VERSION: ${{ needs.build.outputs.version }}
2323

2424
steps:
25+
- uses: actions/checkout@v3
26+
with:
27+
fetch-depth: 0
28+
2529
- name: Download Package artifact
2630
uses: actions/download-artifact@v3
2731
with:

src/GitHubActionsVS.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
1515
EndProject
1616
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Workflows", "Workflows", "{8C868368-D330-4780-A683-AF741C00B754}"
1717
ProjectSection(SolutionItems) = preProject
18-
..\.github\workflows\pr.yaml.yaml = ..\.github\workflows\pr.yaml.yaml
18+
..\.github\workflows\pr.yaml = ..\.github\workflows\pr.yaml
1919
..\.github\workflows\publish.yaml = ..\.github\workflows\publish.yaml
2020
..\.github\workflows\_build.yaml = ..\.github\workflows\_build.yaml
2121
EndProjectSection

0 commit comments

Comments
 (0)