Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
crohr committed May 30, 2024
1 parent b6aa251 commit 10020d1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions publish/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ runs:
run: |
org=${GITHUB_REPOSITORY%%/*}
repo=${GITHUB_REPOSITORY##*/}
curl -u "${{ inputs.token }}" -i -X POST https://dl.packager.io/api/orgs/${org}/repos/${repo}/packages \
-F "package[artefact]=@${{ inputs.artefact }}" \
-F "package[target]=${TARGET/://}" \
-F "package[channel]=$CHANNEL"
curl -u "${{ inputs.token }}" -i -X POST "https://dl.packager.io/api/orgs/${org}/repos/${repo}/packages" \
-F "artefact=@${{ inputs.artefact }}" \
-F "targets[]=${TARGET/://}" \
-F "channels[]=$CHANNEL"

0 comments on commit 10020d1

Please sign in to comment.