Skip to content

Commit

Permalink
ci: fetch latest tag
Browse files Browse the repository at this point in the history
  • Loading branch information
DeepakBomjan committed Aug 17, 2023
1 parent 32efbf0 commit 1fdd0e4
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions .github/workflows/test-relay.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,20 +74,32 @@ jobs:
# ./gradlew clean build
# ./gradlew optimizedJar

- uses: robinraju/[email protected]
- name: Set output
id: vars
run: echo "tag=${GITHUB_REF#refs/*/}" >> $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: "v0.1.0-alpha.15"
tag: "${{ steps.vars.outputs.tag }}"
# latest: true
fileName: "*"
out-file-path: "downloads"
out-file-path: "${GITHUB_WORKSPACE}/.github/scripts/IBC-Integration/artifacts/icon"

- name: List Download Files
run: |
ls -l downloads/
ls -l ${GITHUB_WORKSPACE}/.github/scripts/IBC-Integration/artifacts/icon
echo $HOME
echo $PWD
echo $GITHUB_WORKSPACE
echo "${GITHUB_REF##*/}"
- name: Import GPG key
uses: crazy-max/ghaction-import-gpg@v5
Expand Down

0 comments on commit 1fdd0e4

Please sign in to comment.