Skip to content

Commit 69ad982

Browse files
committed
Add VS2026 support
1 parent 28d3209 commit 69ad982

File tree

2 files changed

+13
-9
lines changed

2 files changed

+13
-9
lines changed

.github/workflows/workflow.yml

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: CodeNav
1+
name: CodeNav
22

33
on:
44
push:
@@ -7,16 +7,16 @@ on:
77
- 'feature/**'
88

99
env:
10-
version: '8.9.${{ github.run_number }}'
10+
version: '9.0.${{ github.run_number }}'
1111
repoUrl: ${{ github.server_url }}/${{ github.repository }}
1212

1313
jobs:
1414
build:
15-
name: Build
15+
name: 🛠️ Build
1616
runs-on: windows-latest
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020

2121
- name: Update Assembly Version
2222
uses: dannevesdantas/[email protected]
@@ -56,17 +56,20 @@ jobs:
5656
readme.md
5757
5858
release:
59-
name: Release
59+
if: github.ref_name == 'main'
60+
name: 🚀 Release
6061
needs: build
6162
runs-on: windows-latest
6263
environment: Release
6364
steps:
6465
- name: Download artifact
65-
uses: actions/download-artifact@v4
66+
uses: actions/download-artifact@v5
67+
with:
68+
merge-multiple: true
6669

6770
- name: Tag release
6871
id: tag_release
69-
uses: mathieudutour/github-tag-action@v6.1
72+
uses: mathieudutour/github-tag-action@v6.2
7073
with:
7174
custom_tag: '${{ env.version }}'
7275
github_token: ${{ secrets.GITHUB_TOKEN }}
@@ -78,6 +81,7 @@ jobs:
7881
name: ${{ steps.tag_release.outputs.new_tag }}
7982
body: ${{ steps.tag_release.outputs.changelog }}
8083
artifacts: "**/*.vsix"
84+
skipIfReleaseExists: true
8185

8286
- name: Publish to Marketplace - VS2019
8387
uses: cezarypiatek/[email protected]

CodeNav.VS2022/source.extension.vsixmanifest

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
33
<Metadata>
4-
<Identity Id="dcdbcca4-3a88-432f-ba04-eb4a4cb64437" Version="8.2" Language="en-US" Publisher="Samir Boulema" />
4+
<Identity Id="dcdbcca4-3a88-432f-ba04-eb4a4cb64437" Version="8.3" Language="en-US" Publisher="Samir Boulema" />
55
<DisplayName>CodeNav 2022</DisplayName>
66
<Description xml:space="preserve">Show the code structure of your current document</Description>
77
<MoreInfo>https://marketplace.visualstudio.com/items?itemName=SamirBoulema.CodeNav</MoreInfo>
@@ -13,7 +13,7 @@
1313
<Tags>code, structure, navigation, map, codemap</Tags>
1414
</Metadata>
1515
<Installation>
16-
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[17.0,18.0)">
16+
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[17.0,19.0)">
1717
<ProductArchitecture>amd64</ProductArchitecture>
1818
</InstallationTarget>
1919
</Installation>

0 commit comments

Comments
 (0)