Skip to content

Commit

Permalink
ci: use file globbing
Browse files Browse the repository at this point in the history
  • Loading branch information
DeepakBomjan committed Aug 16, 2023
1 parent 98edd16 commit 28575d9
Showing 1 changed file with 15 additions and 8 deletions.
23 changes: 15 additions & 8 deletions .github/workflows/test-relay.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,22 @@ jobs:
# ./gradlew clean build
# ./gradlew optimizedJar

- name: Download Contracts
uses: dsaltares/fetch-gh-release-asset@master
- uses: robinraju/[email protected]
with:
repo: 'icon-project/IBC-Integration'
version: 'tags/v0.1.0-alpha.15'
regex: true
file: "*\\.jar"
target: 'downloads/'
token: ${{ secrets.GITHUB_TOKEN }}
repository: "icon-project/IBC-Integration"
tag: "v0.1.0-alpha.15"
latest: true
fileName: "*"

# - name: Download Contracts
# uses: dsaltares/fetch-gh-release-asset@master
# with:
# repo: 'icon-project/IBC-Integration'
# version: 'tags/v0.1.0-alpha.15'
# regex: true
# file: "*.jar"
# target: 'downloads/'
# token: ${{ secrets.GITHUB_TOKEN }}

- name: List Download Files
run: ls -l downloads/
Expand Down

0 comments on commit 28575d9

Please sign in to comment.