Skip to content

Commit

Permalink
Fix deployment URL output
Browse files Browse the repository at this point in the history
They changed the action output and forgot to tell anyone.
  • Loading branch information
Southpaw1496 committed Nov 29, 2024
1 parent 099ae92 commit 7bf8c57
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/commit-preview.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -18,7 +18,7 @@ jobs:
contents: read
env:
GITHUB_PUBLISH_TOKEN: ${{ secrets.COZY_PAT }}
DEPLOYMENT_URL: ${{ needs.publish.outputs.deployment-url }}
DEPLOYMENT_URL: ${{ needs.publish.outputs.url }}
steps:
- name: Comment on the Comment
if: env.GITHUB_PUBLISH_TOKEN != ''
Expand Down

2 comments on commit 7bf8c57

@Cozy-GitHub
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See preview on Cloudflare Pages:

@Cozy-GitHub
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See preview on Cloudflare Pages:

Please sign in to comment.