Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 8ee6791

Browse files
authored
ci: adjust for new repository url (#994)
1 parent 35606cd commit 8ee6791

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
run: ./gradlew docs:docs
3737
- name: "👀 Determine docs target repository"
3838
run: |
39-
if [ "${{ github.repository }}" = "grails/gorm-hibernate5" ]; then
39+
if [ "${{ github.repository }}" = "grails/grails-data-hibernate5" ]; then
4040
DOCS_TARGET_REPOSITORY="grails/grails-data-mapping"
4141
else
4242
DOCS_TARGET_REPOSITORY="${{ github.repository }}"

.github/workflows/gradle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
run: ./gradlew docs:docs
6464
- name: "👀 Determine docs target repository"
6565
run: |
66-
if [ "${{ github.repository }}" = "grails/gorm-hibernate5" ]; then
66+
if [ "${{ github.repository }}" = "grails/grails-data-hibernate5" ]; then
6767
DOCS_TARGET_REPOSITORY="grails/grails-data-mapping"
6868
else
6969
DOCS_TARGET_REPOSITORY="${{ github.repository }}"

.github/workflows/groovy-joint-workflow.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,8 @@ jobs:
7474
echo " server = 'https://ge.grails.org'" >> $GITHUB_OUTPUT
7575
echo " buildScan {" >> $GITHUB_OUTPUT
7676
echo " tag('groovy')" >> $GITHUB_OUTPUT
77-
echo " tag('gorm-hibernate5')" >> $GITHUB_OUTPUT
77+
echo " tag('grails-data-hibernate5')" >> $GITHUB_OUTPUT
78+
echo " tag('grails-database-migration')" >> $GITHUB_OUTPUT
7879
echo " publishing.onlyIf { isAuthenticated }" >> $GITHUB_OUTPUT
7980
echo " uploadInBackground = false" >> $GITHUB_OUTPUT
8081
echo " }" >> $GITHUB_OUTPUT

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ jobs:
134134
uses: grails/github-actions/export-gradle-properties@v3
135135
- name: "👀 Determine docs target repository"
136136
run: |
137-
if [ "${{ github.repository }}" = "grails/gorm-hibernate5" ]; then
137+
if [ "${{ github.repository }}" = "grails/grails-data-hibernate5" ]; then
138138
DOCS_TARGET_REPOSITORY="grails/grails-data-mapping"
139139
else
140140
DOCS_TARGET_REPOSITORY="${{ github.repository }}"

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ develocity {
1111
server = 'https://ge.grails.org'
1212
buildScan {
1313
tag('grails')
14-
tag('gorm-hibernate5')
14+
tag('grails-data-hibernate5')
1515
tag('grails-database-migration')
1616
publishing.onlyIf { isAuthenticated }
1717
uploadInBackground = isLocal

0 commit comments

Comments
 (0)