Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
run: ./gradlew docs:docs
- name: "👀 Determine docs target repository"
run: |
if [ "${{ github.repository }}" = "grails/gorm-hibernate5" ]; then
if [ "${{ github.repository }}" = "grails/grails-data-hibernate5" ]; then
DOCS_TARGET_REPOSITORY="grails/grails-data-mapping"
else
DOCS_TARGET_REPOSITORY="${{ github.repository }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
run: ./gradlew docs:docs
- name: "👀 Determine docs target repository"
run: |
if [ "${{ github.repository }}" = "grails/gorm-hibernate5" ]; then
if [ "${{ github.repository }}" = "grails/grails-data-hibernate5" ]; then
DOCS_TARGET_REPOSITORY="grails/grails-data-mapping"
else
DOCS_TARGET_REPOSITORY="${{ github.repository }}"
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/groovy-joint-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ jobs:
echo " server = 'https://ge.grails.org'" >> $GITHUB_OUTPUT
echo " buildScan {" >> $GITHUB_OUTPUT
echo " tag('groovy')" >> $GITHUB_OUTPUT
echo " tag('gorm-hibernate5')" >> $GITHUB_OUTPUT
echo " tag('grails-data-hibernate5')" >> $GITHUB_OUTPUT
echo " tag('grails-database-migration')" >> $GITHUB_OUTPUT
echo " publishing.onlyIf { isAuthenticated }" >> $GITHUB_OUTPUT
echo " uploadInBackground = false" >> $GITHUB_OUTPUT
echo " }" >> $GITHUB_OUTPUT
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ jobs:
uses: grails/github-actions/export-gradle-properties@v3
- name: "👀 Determine docs target repository"
run: |
if [ "${{ github.repository }}" = "grails/gorm-hibernate5" ]; then
if [ "${{ github.repository }}" = "grails/grails-data-hibernate5" ]; then
DOCS_TARGET_REPOSITORY="grails/grails-data-mapping"
else
DOCS_TARGET_REPOSITORY="${{ github.repository }}"
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ develocity {
server = 'https://ge.grails.org'
buildScan {
tag('grails')
tag('gorm-hibernate5')
tag('grails-data-hibernate5')
tag('grails-database-migration')
publishing.onlyIf { isAuthenticated }
uploadInBackground = isLocal
Expand Down
Loading