Skip to content

Commit

Permalink
Correct version
Browse files Browse the repository at this point in the history
  • Loading branch information
Kas-tle authored Apr 15, 2024
1 parent 19706fa commit 7ddfcea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- run: |
cat metadata.json
echo
jq -c --arg project "geyser-preview" --arg version "pr.${{ github.event.inputs.version }}" --arg number "${{ github.event.inputs.runId }}" '
jq --arg project "geyser-preview" --arg version "pr.${{ github.event.inputs.version }}" --arg number "${{ github.event.inputs.runId }}" '
.
| .downloads |= map_values({"name", "sha256"})
| {$project, "repo", $version, "number": $number | tonumber, "changes": [], "downloads"}
Expand All @@ -55,7 +55,7 @@ jobs:
DOWNLOADS_PRIVATE_KEY: ${{ secrets.DOWNLOADS_PRIVATE_KEY }}
DOWNLOADS_SERVER_IP: ${{ secrets.DOWNLOADS_SERVER_IP }}
RUN_ID: ${{ github.event.inputs.runId }}
VERSION: pr.${{ github.event.inputs.version }}
VERSION: ${{ github.event.inputs.version }}
run: |
# Save the private key to a file
echo "$DOWNLOADS_PRIVATE_KEY" > id_ecdsa
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pullrequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,6 @@ jobs:
ref: 'actions-testing',
inputs: {
runId: '${{ github.run_id }}',
version: 'pr-${{ github.event.pull_request.number }}'
version: 'pr.${{ github.event.pull_request.number }}'
}
});

0 comments on commit 7ddfcea

Please sign in to comment.