This repository was archived by the owner on Feb 5, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 2323 - name : Create Release
24242525 with :
26- artifacts : " *.zip"
26+ artifacts : " **/* .zip"
2727 body : " Automatic release built with Github actions."
Original file line number Diff line number Diff line change @@ -178,15 +178,15 @@ jobs:
178178 $CHIAKI_VERSION_MAJOR = (Select-String -Path .\CMakeLists.txt -Pattern 'set\(CHIAKI_VERSION_MAJOR ([0-9]+)\)') | %{$_.Matches.Groups[1].value}
179179 $CHIAKI_VERSION_MINOR = (Select-String -Path .\CMakeLists.txt -Pattern 'set\(CHIAKI_VERSION_MINOR ([0-9]+)\)') | %{$_.Matches.Groups[1].value}
180180 $CHIAKI_VERSION_PATCH = (Select-String -Path .\CMakeLists.txt -Pattern 'set\(CHIAKI_VERSION_PATCH ([0-9]+)\)') | %{$_.Matches.Groups[1].value}
181- $RELEASE_PACKAGE_FILE = "Chiaki-win_x64-$CHIAKI_VERSION_MAJOR.$CHIAKI_VERSION_MINOR.$CHIAKI_VERSION_PATCH.zip"
181+ $RELEASE_PACKAGE_FILE = "Chiaki-win_x64-MSYS2- $CHIAKI_VERSION_MAJOR.$CHIAKI_VERSION_MINOR.$CHIAKI_VERSION_PATCH.zip"
182182 Compress-Archive Chiaki $RELEASE_PACKAGE_FILE
183183 $release_filepath = Get-ChildItem $RELEASE_PACKAGE_FILE | %{$_[0].FullName}
184184 echo "RELEASE_PACKAGE_PATH=$release_filepath" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf8 -Append
185185
186186 - name : Upload Artifact
187187 uses : actions/upload-artifact@v3
188188 with :
189- name : Chiaki-win_x64-Release
189+ name : Chiaki-win_x64-MSYS2- Release
190190 path : ${{ env.RELEASE_PACKAGE_PATH }}
191191 if-no-files-found : error
192192 retention-days : 1
You can’t perform that action at this time.
0 commit comments