Skip to content

Commit cdd35b3

Browse files
authored
Merge pull request #118 from DataTraveler1/main
Update post-build.ps1
2 parents 001c437 + 1bb92d4 commit cdd35b3

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/cmdlets.ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }}
6868
AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }}
6969
- name: Upload Artifact
70-
uses: actions/upload-artifact@v3
70+
uses: actions/upload-artifact@v4
7171
with:
7272
name: PowerShellTools.Cmdlets
7373
path: ./PowerShellToolsPro.Cmdlets/out

.github/workflows/cmdlets.production.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
env:
7171
PSGALLERY: ${{ secrets.PSGALLERY }}
7272
- name: Upload Artifact
73-
uses: actions/upload-artifact@v3
73+
uses: actions/upload-artifact@v4
7474
with:
7575
name: PowerShellTools.Cmdlets
7676
path: ./PowerShellToolsPro.Cmdlets/out

.github/workflows/hosts.ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
dotnet publish -f net472 -c Release .\IronmanPowerShellHost.csproj
3535
3636
- name: Upload Artifact
37-
uses: actions/upload-artifact@v3
37+
uses: actions/upload-artifact@v4
3838
with:
3939
name: PowerShellTools
4040
path: IronmanPowerShellHost/bin/Release

.github/workflows/vs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
msbuild PowerShellTools.sln -p:Configuration=Release -p:Platform="Any CPU" -p:DevEnvDir="$devenv"
6161
6262
- name: Upload Artifact
63-
uses: actions/upload-artifact@v3
63+
uses: actions/upload-artifact@v4
6464
with:
6565
name: PowerShellTools
6666
path: bin/Release/PowerShellTools.*.vsix

.github/workflows/vscode.ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }}
6161

6262
- name: Upload Artifact
63-
uses: actions/upload-artifact@v3
63+
uses: actions/upload-artifact@v4
6464
with:
6565
name: PowerShellTools
6666
path: vscode/powershellprotools/kit/powershellprotools-*.vsix

PowerShellToolsPro.Cmdlets/post-build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ $ManifestPath = Join-Path $OutDir PowerShellProTools.psd1
44
$ModulePath = Join-Path $OutDir PowerShellProTools.psm1
55
Remove-Item $ManifestPath -ErrorAction SilentlyContinue
66

7-
$Version = "2024.7.0"
7+
$Version = "2025.2.0"
88
#$prerelease = "-beta1"
99

1010
$powerShellGet = Import-Module PowerShellGet -PassThru -ErrorAction Ignore -RequiredVersion 2.2.5

0 commit comments

Comments
 (0)