Skip to content
This repository was archived by the owner on Feb 5, 2024. It is now read-only.

Commit f366f58

Browse files
author
Alvaro Munoz
committed
new MSYS2 name
1 parent a5fe96f commit f366f58

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/Build-win_x64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ jobs:
2323
- name: Create Release
2424
uses: ncipollo/[email protected]
2525
with:
26-
artifacts: "*.zip"
26+
artifacts: "**/*.zip"
2727
body: "Automatic release built with Github actions."

.github/workflows/build-msys2.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)