Skip to content

Commit af4d5e1

Browse files
dependabot[bot]github-actions[bot]
authored andcommitted
deps: bump actions/setup-dotnet from 5.2.0 to 5.3.0 in the actions group (#23)
Bumps the actions group with 1 update: [actions/setup-dotnet](https://github.com/actions/setup-dotnet). Updates `actions/setup-dotnet` from 5.2.0 to 5.3.0 - [Release notes](https://github.com/actions/setup-dotnet/releases) - [Commits](actions/setup-dotnet@v5.2.0...v5.3.0) --- updated-dependencies: - dependency-name: actions/setup-dotnet dependency-version: 5.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent ea1dd1a commit af4d5e1

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/dotnet.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
ref: ${{ needs.prepare.outputs.build_sha }}
8383

8484
- name: Setup .NET SDK
85-
uses: actions/setup-dotnet@v5.2.0
85+
uses: actions/setup-dotnet@v5.3.0
8686
with:
8787
dotnet-version: 10.x
8888

@@ -119,7 +119,7 @@ jobs:
119119
ref: ${{ needs.prepare.outputs.build_sha }}
120120

121121
- name: Setup .NET SDK
122-
uses: actions/setup-dotnet@v5.2.0
122+
uses: actions/setup-dotnet@v5.3.0
123123
with:
124124
dotnet-version: 10.x
125125

@@ -135,15 +135,15 @@ jobs:
135135
run: |
136136
$version = "${{ needs.prepare.outputs.version }}"
137137
$portableExe = ".\portable\Auto MIDI Player.exe"
138-
$stagedExe = ".\AutoMidiPlayer_${version}_win-x64.exe"
138+
$stagedExe = ".\Auto MIDI Player.exe"
139139
$portableArchive = ".\AutoMidiPlayer_${version}_win-x64-portable.zip"
140140
141141
if (-not (Test-Path $portableExe)) { throw "Missing portable executable: $portableExe" }
142142
143143
Copy-Item $portableExe $stagedExe -Force
144144
if (Test-Path $portableArchive) { Remove-Item $portableArchive -Force }
145-
7z a $portableArchive $stagedExe -mx9
146-
Remove-Item $stagedExe -Force
145+
7z a $portableArchive "`"$stagedExe`"" -mx9
146+
Remove-Item "`"$stagedExe`"" -Force
147147
148148
- name: Upload portable artifact
149149
uses: actions/upload-artifact@v7.0.1

0 commit comments

Comments
 (0)