diff --git a/.github/workflows/charts-release-ghpages.yaml b/.github/workflows/charts-release-ghpages.yaml index 8e519752..f3f71b78 100644 --- a/.github/workflows/charts-release-ghpages.yaml +++ b/.github/workflows/charts-release-ghpages.yaml @@ -88,11 +88,10 @@ jobs: disable_globbing: true - name: Wait for deploy - uses: jchen1/wait-for-green@v1.0.7 + uses: fountainhead/action-wait-for-check@v1.0.0 if: ${{ steps.auto-commit.outputs.changes_detected }} id: wait-for-deploy with: token: ${{ steps.get-app-token.outputs.token }} - commit: ${{ steps.auto-commit.outputs.commit_hash }} - # Ignore the job we're running on lest we create an infinite loop - ignored_checks: 'wait-for-deploy' + ref: ${{ steps.auto-commit.outputs.commit_hash }} + checkName: deploy diff --git a/.github/workflows/charts-release.yaml b/.github/workflows/charts-release.yaml index 7922c0e6..19dcccb5 100644 --- a/.github/workflows/charts-release.yaml +++ b/.github/workflows/charts-release.yaml @@ -41,7 +41,7 @@ jobs: repoConfigFile: ./.ci/repo-config.yaml overrideCharts: "[${{ inputs.charts }}]" - release-gh-pages-library: + release-library-charts: name: Release Library charts to GitHub pages uses: ./.github/workflows/charts-release-ghpages.yaml needs: @@ -50,12 +50,12 @@ jobs: charts: "${{ needs.prepare.outputs.libraryChartsToRelease }}" secrets: inherit - # release-gh-pages: - # name: Release Application Charts to GitHub pages - # uses: ./.github/workflows/charts-release-ghpages.yaml - # needs: - # - prepare - # - release-gh-pages-library - # with: - # charts: "${{ needs.prepare.outputs.applicationChartsToRelease }}" - # secrets: inherit + release-application-charts: + name: Release Application charts to GitHub pages + uses: ./.github/workflows/charts-release-ghpages.yaml + needs: + - prepare + - release-library-charts + with: + charts: "${{ needs.prepare.outputs.applicationChartsToRelease }}" + secrets: inherit