Skip to content

Commit

Permalink
set unzip=0 and dont specify extension on uploadFilename
Browse files Browse the repository at this point in the history
  • Loading branch information
jmckisson committed May 13, 2024
1 parent d211755 commit deb5d83
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-mudlet-win.yml
Expand Up @@ -107,7 +107,7 @@ jobs:
- name: Submit to make.mudlet.org
if: env.UPLOAD_FILENAME
run: |
$uri = "https://make.mudlet.org/snapshots/gha_queue.php?artifact_name=$($env:UPLOAD_FILENAME)&unzip=1"
$uri = "https://make.mudlet.org/snapshots/gha_queue.php?artifact_name=$($env:UPLOAD_FILENAME)&unzip=0"
Invoke-WebRequest -Uri $uri -Method Post
shell: pwsh

2 changes: 1 addition & 1 deletion CI/deploy-mudlet-for-windows.sh
Expand Up @@ -150,7 +150,7 @@ if [[ "$GITHUB_REPO_TAG" == "false" ]] && [[ "$PublicTestBuild" == false ]]; the
#7z a "Mudlet-$VERSION$MUDLET_VERSION_BUILD-$BUILD_COMMIT-windows-$BUILD_BITNESS.zip" "$PACKAGE_DIR/*"

# Define the upload filename
uploadFilename="Mudlet-$VERSION$MUDLET_VERSION_BUILD-$BUILD_COMMIT-windows-$BUILD_BITNESS.zip"
uploadFilename="Mudlet-$VERSION$MUDLET_VERSION_BUILD-$BUILD_COMMIT-windows-$BUILD_BITNESS"

# Move packaged files to the upload directory
moveToUploadDir "$uploadFilename"
Expand Down

0 comments on commit deb5d83

Please sign in to comment.