-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
More logging and omit body fix (#150)
Co-authored-by: Tomasz Gołębiowski <[email protected]>
- Loading branch information
1 parent
c19171e
commit fec8f9c
Showing
3 changed files
with
12 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,7 +54,7 @@ jobs: | |
key: ${{ runner.os }}-nuget-${{ github.sha }} | ||
restore-keys: ${{ runner.os }}-nuget- | ||
|
||
- name: Cache agent | ||
- name: Cache agent (${{ steps.version.outputs.agent-version }}) | ||
id: cache-agent | ||
uses: actions/cache@v4 | ||
with: | ||
|
@@ -66,13 +66,13 @@ jobs: | |
shell: pwsh | ||
run: ./agent/runBuildAgent.ps1 | ||
|
||
- name: Set version on AssemblyInfo.cs files | ||
- name: Set version on AssemblyInfo.cs files (${{ steps.version.outputs.next-version }}) | ||
uses: dannevesdantas/[email protected] | ||
with: | ||
version: ${{ steps.version.outputs.next-version }} | ||
path: src/ | ||
|
||
- name: Set version for .vsixmanifest file | ||
- name: Set version for .vsixmanifest file (${{ steps.version.outputs.next-version }}) | ||
uses: cezarypiatek/[email protected] | ||
with: | ||
version: ${{ steps.version.outputs.next-version }} | ||
|
@@ -114,7 +114,7 @@ jobs: | |
files: TestResults/**/*.trx | ||
|
||
#Publish | ||
- name: Create git tag | ||
- name: Create git tag (${{ steps.version.outputs.next-version-tag }}) | ||
uses: actions/github-script@v6 | ||
with: | ||
script: | | ||
|
@@ -130,7 +130,8 @@ jobs: | |
with: | ||
tag: ${{ steps.version.outputs.next-version-tag }} | ||
name: Cody for Visual Studio ${{ steps.version.outputs.next-version }} | ||
prerelease: true | ||
omitBody: true | ||
prerelease: ${{ github.event.inputs.publish == 'Preview' }} | ||
artifacts: src/Cody.VisualStudio/bin/${{ env.Configuration }}/Cody.VisualStudio.vsix | ||
|
||
- name: Create custom VSIX feed | ||
|