Skip to content

Commit

Permalink
Postaction
Browse files Browse the repository at this point in the history
  • Loading branch information
kashamalasha committed Aug 11, 2023
1 parent c3f0ffa commit d70bba7
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,15 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Get the request data
run: "echo 'latest release: ${{ steps.get_latest_release.outputs.data }}'"
run: |
"echo 'latest release: ${{ steps.get_latest_release.outputs.data }}'"
- name: Install the jq util
run: |
apt-get install -y jq
- name: Get all blockmaps ids
run: |
"echo ${{ steps.get_latest_release.outputs.data }} \
| jq '.repository.releases.nodes[].releaseAssets.nodes[] \
| select(.name | endswith(".blockmap"))'"

0 comments on commit d70bba7

Please sign in to comment.