From 80840e7a441b3de96fbc00ca80cbd4ccbd62fec7 Mon Sep 17 00:00:00 2001 From: Southpaw Date: Fri, 29 Nov 2024 23:12:37 +0000 Subject: [PATCH] Revert "Fix deployment URL output" This reverts commit 7bf8c57349777d87576aca267467d1cc26d47ef0. --- .github/workflows/commit-preview.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/commit-preview.yaml b/.github/workflows/commit-preview.yaml index a731a3f5..1926ba77 100644 --- a/.github/workflows/commit-preview.yaml +++ b/.github/workflows/commit-preview.yaml @@ -4,12 +4,12 @@ name: Commit preview jobs: build-website: uses: ./.github/workflows/build-website.yaml - + publish: uses: ./.github/workflows/publish-website.yaml needs: build-website secrets: inherit - + comment-on-commit: name: Add a comment on the commit runs-on: ubuntu-latest @@ -18,7 +18,7 @@ jobs: contents: read env: GITHUB_PUBLISH_TOKEN: ${{ secrets.COZY_PAT }} - DEPLOYMENT_URL: ${{ needs.publish.outputs.url }} + DEPLOYMENT_URL: ${{ needs.publish.outputs.deployment-url }} steps: - name: Comment on the Comment if: env.GITHUB_PUBLISH_TOKEN != ''