Skip to content

Commit

Permalink
ci: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
DeepakBomjan committed Aug 17, 2023
1 parent 17f0b43 commit c18890b
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/test-relay.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,22 @@ jobs:
run: |
TAG_XCALL=$(curl -s "https://api.github.com/repos/icon-project/xCall/tags" | jq -r '.[0].name')
echo "TAG_XCALL=$TAG_XCALL" >> $GITHUB_ENV
- name: Set output
id: vars
run: echo "tag=$(curl -s "https://api.github.com/repos/icon-project/IBC-Integration/tags" | jq -r '.[0].name')" >> $GITHUB_OUTPUT
- name: Check output
env:
RELEASE_VERSION: ${{ steps.vars.outputs.tag }}
run: |
echo $RELEASE_VERSION
echo ${{ steps.vars.outputs.tag }}
- name: Download Javascore Contracts
uses: robinraju/[email protected]
with:
repository: "icon-project/IBC-Integration"
tag: "$TAG_IBC"
tag: "${{ steps.vars.outputs.tag }}"
# latest: true
fileName: "*"
out-file-path: "${GITHUB_WORKSPACE}/.github/scripts/IBC-Integration/artifacts/icon"
Expand Down

0 comments on commit c18890b

Please sign in to comment.