This is an automated email from the ASF dual-hosted git repository.
jdaugherty pushed a commit to branch 7.0.x
in repository https://gitbox.apache.org/repos/asf/grails-core.git
The following commit(s) were added to refs/heads/7.0.x by this push:
new 9de1458195 [skip ci] debug
9de1458195 is described below
commit 9de145819589be04bce92366b4ddfa3d4bce163e
Author: James Daugherty <[email protected]>
AuthorDate: Sun Jun 1 02:59:55 2025 -0400
[skip ci] debug
---
.github/workflows/release-source-distribution.yml | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/.github/workflows/release-source-distribution.yml
b/.github/workflows/release-source-distribution.yml
index 55224dd1a7..2568a05d20 100644
--- a/.github/workflows/release-source-distribution.yml
+++ b/.github/workflows/release-source-distribution.yml
@@ -110,8 +110,8 @@ jobs:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
set -e
- cd grails
- asset_id=$(gh release view ${{ github.event.inputs.release_tag }}
--json assets --repo apache/grails-core --jq '.assets[] | select(.name ==
"CHECKSUMS.txt") | .id')
+ asset_id=$(gh release view ${{ github.event.inputs.release_tag }}
--json assets --repo ${{ github.repository }} --jq '.assets[] | select(.name ==
"CHECKSUMS.txt") | .id')
+ echo "Removing CHECKSUMS.txt asset with ID: $asset_id"
gh api \
--method DELETE \
-H "Accept: application/vnd.github+json" \
@@ -122,8 +122,8 @@ jobs:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
set -e
- cd grails
- asset_id=$(gh release view ${{ github.event.inputs.release_tag }}
--json assets --repo apache/grails-core --jq '.assets[] | select(.name ==
"BUILD_DATE.txt") | .id')
+ asset_id=$(gh release view ${{ github.event.inputs.release_tag }}
--json assets --repo ${{ github.repository }} --jq '.assets[] | select(.name ==
"BUILD_DATE.txt") | .id')
+ echo "Removing BUILD_DATE.txt asset with ID: $asset_id"
gh api \
--method DELETE \
-H "Accept: application/vnd.github+json" \
@@ -134,8 +134,8 @@ jobs:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
set -e
- cd grails
- asset_id=$(gh release view ${{ github.event.inputs.release_tag }}
--json assets --repo apache/grails-core --jq '.assets[] | select(.name ==
"PUBLISHED_ARTIFACTS.txt") | .id')
+ asset_id=$(gh release view ${{ github.event.inputs.release_tag }}
--json assets --repo ${{ github.repository }} --jq '.assets[] | select(.name ==
"PUBLISHED_ARTIFACTS.txt") | .id')
+ echo "Removing PUBLISHED_ARTIFACTS.txt asset with ID: $asset_id"
gh api \
--method DELETE \
-H "Accept: application/vnd.github+json" \