Skip to content

Commit

Permalink
ci: Fix workflow path issue introduced in #29506 (#28554) (#29599)
Browse files Browse the repository at this point in the history
Fix incorrect reusable workflow path in nightly and trunk workflow
introduced in #29506
Also fix badge image for trunk in top level README.md

This PR resolves #28554 (Refactor github workflows to group key top
level w).
  • Loading branch information
spbolton authored Aug 15, 2024
1 parent 936a75c commit b7eb9a3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cicd_3-trunk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
name: CLI Build
needs: [ initialize,test ]
if: always() && !failure() && !cancelled()
uses: ./.github/workflows/cicd_comp_build-phase.yml
uses: ./.github/workflows/cicd_comp_cli-native-build-phase.yml
with:
buildNativeImage: true
artifact-run-id: ${{ needs.initialize.outputs.artifact-run-id }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cicd_4-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
name: Nightly CLI Build
needs: [ initialize, test ]
if: always() && !failure() && !cancelled()
uses: ./.github/workflows/cicd_comp_build-phase.yml
uses: ./.github/workflows/cicd_comp_cli-native-build-phase.yml
with:
buildNativeImage: true
branch: ${{ github.ref }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[![Merge Queue](https://github.com/dotCMS/core/actions/workflows/cicd_2-merge-queue.yml/badge.svg)](https://github.com/dotCMS/core/actions/workflows/cicd_2-merge-queue.yml)

[![Trunk](https://github.com/dotCMS/core/actions/workflows/cicd_3-trunk/badge.svg)](https://github.com/dotCMS/core/actions/workflows/cicd_3-trunk.yml)
[![Trunk](https://github.com/dotCMS/core/actions/workflows/cicd_3-trunk.yml/badge.svg)](https://github.com/dotCMS/core/actions/workflows/cicd_3-trunk.yml)

[![Nightly](https://github.com/dotCMS/core/actions/workflows/cicd_4-nightly.yml/badge.svg)](https://github.com/dotCMS/core/actions/workflows/cicd_4-nightly.yml)

Expand Down

0 comments on commit b7eb9a3

Please sign in to comment.