Skip to content

Commit

Permalink
Change curl out for invoke-webrequest
Browse files Browse the repository at this point in the history
  • Loading branch information
vadi2 committed May 9, 2024
1 parent 6af793d commit f562812
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build-mudlet-win.yml
Expand Up @@ -85,6 +85,8 @@ jobs:

- name: Submit to make.mudlet.org
if: env.UPLOAD_FILENAME
run: curl -X POST "https://make.mudlet.org/snapshots/gha_queue.php?artifact_name=${{env.UPLOAD_FILENAME}}&unzip=1"
shell: bash
run: |
$uri = "https://make.mudlet.org/snapshots/gha_queue.php?artifact_name=$($env:UPLOAD_FILENAME)&unzip=1"
Invoke-WebRequest -Uri $uri -Method Post
shell: pwsh

0 comments on commit f562812

Please sign in to comment.