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-forge.git
The following commit(s) were added to refs/heads/7.0.x by this push:
new 9bd8640 handle distro renames
9bd8640 is described below
commit 9bd8640d24cdd1d595485cb5c09a4c7448681cdb
Author: James Daugherty <[email protected]>
AuthorDate: Tue May 27 21:35:16 2025 -0400
handle distro renames
---
.github/workflows/gradle.yml | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml
index 9fa80c1..a10edf6 100644
--- a/.github/workflows/gradle.yml
+++ b/.github/workflows/gradle.yml
@@ -52,9 +52,9 @@ jobs:
./tmp/forge-cli/bin/grails-forge-cli --version
- name: "✅ Verify combined CLI"
run: |
- cp grails-cli/build/distributions/grails-cli-*.zip cli.zip
+ cp grails-cli/build/distributions/apache-grails-*.zip cli.zip
unzip cli -d tmp1
- mv tmp1/grails-cli-* tmp1/cli
+ mv tmp1/apache-grails-* tmp1/cli
./tmp1/cli/grails --version
- name: "📤 Upload CLI Zip to Workflow Summary Page"
if: ${{ matrix.java == '17' }}
@@ -63,8 +63,7 @@ jobs:
include-hidden-files: true
name: grails-cli-snapshot
path: |
- tmp1/cli/**
- tmp1/cli/.grails/**/* # include .grails directory
+ grails-cli/build/distributions/apache-grails-*.zip
publish:
if: github.repository_owner == 'apache' && github.event_name == 'push'
needs: build