forked from cosmos/relayer
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1fdd0e4
commit e20f655
Showing
1 changed file
with
6 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -74,21 +74,17 @@ jobs: | |
# ./gradlew clean build | ||
# ./gradlew optimizedJar | ||
|
||
- 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: 'Get Previous tag' | ||
id: previoustag | ||
uses: "WyriHaximus/github-action-get-previous-tag@v1" | ||
with: | ||
fallback: 1.0.0 # Optional fallback tag to use when no tag can be found | ||
|
||
- name: Download Javascore Contracts | ||
uses: robinraju/[email protected] | ||
with: | ||
repository: "icon-project/IBC-Integration" | ||
tag: "${{ steps.vars.outputs.tag }}" | ||
tag: "${{ steps.previoustag.outputs.tag }}" | ||
# latest: true | ||
fileName: "*" | ||
out-file-path: "${GITHUB_WORKSPACE}/.github/scripts/IBC-Integration/artifacts/icon" | ||
|