Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/docs-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,13 @@ jobs:
aws-region: us-east-1

- name: Publish preview site
run: aws s3 sync docs/site/ s3://lakefs-docs-pr-previews/prs/pr-${{ github.event.pull_request.number }}/
run: aws s3 sync docs/site/ s3://lakefs-docs-pr-previews/prs/oss-pr-${{ github.event.pull_request.number }}/

- name: Comment with preview URL
uses: actions/github-script@v8
with:
script: |
const previewUrl = `https://pr-${context.payload.pull_request.number}.docs-lakefs-preview.io/`;
const previewUrl = `https://oss-pr-${context.payload.pull_request.number}.docs-lakefs-preview.io/`;
let commentBody = `📚 Documentation preview at ${previewUrl}`;

// Check if a preview comment already exists
Expand Down
Loading