Postaction #241
Workflow file for this run
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
name: Clean release assets | |
on: | |
push: | |
branches: | |
- "post-actions" | |
jobs: | |
clean-release: | |
runs-on: ubuntu-latest | |
env: | |
RELEASE_DATA: "" | |
steps: | |
# - name: Checkout code | |
# uses: actions/checkout@v2 | |
# - name: Get latest release info | |
# id: get_latest_release | |
# uses: octokit/graphql-action@v2.x | |
# with: | |
# query: | | |
# query release($owner:String!,$repo:String!) { | |
# repository(owner:$owner,name:$repo) { | |
# releases(first:1) { | |
# nodes { | |
# releaseAssets(first:20) { | |
# nodes { | |
# id | |
# name | |
# } | |
# } | |
# } | |
# } | |
# } | |
# } | |
# variables: | | |
# owner: ${{ github.event.repository.owner.name }} | |
# repo: ${{ github.event.repository.name }} | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# - uses: octokit/request-action@v2.x | |
# id: get_latest_release | |
# with: | |
# route: GET /repos/${{ github.event.repository.owner.name }}/${{ github.event.repository.name }}/releases/latest | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# - run: | | |
# echo '${{ steps.get_latest_release.outputs.data }}' | jq '.[0] | .assets | map(select(.name | endswith(".blockmap")).id)' | |
- name: Get the release data | |
id: releases_data | |
env: | |
HOST: "https://api.github.com" | |
ENDPOINT: "/repos/${{ github.event.repository.owner.name }}/${{ github.event.repository.name }}/releases" | |
run: | | |
data=$( | |
curl -X GET -s \ | |
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ | |
"${HOST}${ENDPOINT}" | |
) | |
data=$(echo "${data}" | jq '.[0] | {name, id, assets: (.assets | map({name, id}))} | tostring') | |
echo "release_data=${data}" >> $GITHUB_OUTPUT | |
- name: Read the output | |
run: | | |
echo ${{ steps.releases_data.outputs.release_data }} | jq '.' | |
# - name: Filter requested data | |
# id: jq_filter | |
# run: | | |
# blockmaps=$( | |
# echo '${{ steps.releases_data.outputs.release_data }}' | jq \ | |
# .[0] | .assets | map(select(.name | endswith(".blockmap")).id) | "\"" + . + "\"") | join(" ")' | |
# ) | |
# echo "( ${blockmaps} )" | |
# echo "blockmap_list=( ${blockmaps} )" >> $GITHUB_OUTPUT | |
# - name: Remove the blockmap files | |
# env: | |
# HOST: "https://api.github.com" | |
# ENDPOINT: "/repos/${{ github.event.repository.owner.name }}/${{ github.event.repository.name }}/releases/assets/" | |
# run: | | |
# assets_array="${{ steps.jq_filter.outputs.blockmap_list }}" | |
# assets_array="${assets_array#(}" | |
# assets_array="${assets_array%)}" | |
# # Convert the array string to an actual array | |
# IFS=', ' read -ra assets <<< "$assets_array" | |
# # Iterate over the array elements | |
# echo "Iterating over the assets:" | |
# for asset_id in "${assets[@]}"; do | |
# echo "Deleting asset with ID: $asset_id" | |
# curl -X DELETE -s \ | |
# -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ | |
# "${HOST}${ENDPOINT}$asset_id" | |
# done | |