Skip to content

test5

test5 #20

Workflow file for this run

name: "Preview deploy"
on:
pull_request:
types: ["opened", "edited", "synchronize"]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
deploy:
name: "build on Netlify"
runs-on: ubuntu-latest
steps:
- name: Checkout main website repo
uses: actions/checkout@v4
with:
repository: questdb/questdb.io
token: ${{ secrets.GH_PAT }}
fetch-depth: 0
ref: "master"
persist-credentials: true
- name: Checkout local docs
uses: actions/checkout@v4
with:
path: tmp
- name: List contents
run: |
ls -la
- name: List contents
run: |
ls -la tmp/
- name: List contents
run: |
ls -la tmp/docs/
- name: Move docs
run: |
cp -rvT tmp/docs docs/.
- name: Move sidebars.js
run: |
mv tmp/docs/sidebars.js .
- name: Read sidebars.js
run: |
cat sidebars.js
- uses: jsmrcaga/[email protected]
with:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
# Comment PR if preview was successful and NETLIFY_PREVIEW_URL is set
- name: "Update PR"
if: ${{ env.NETLIFY_PREVIEW_URL }}
uses: thollander/actions-comment-pull-request@v2
with:
message: |
:rocket: **Build success!**
Latest successful preview: ${{ env.NETLIFY_PREVIEW_URL }}
Commit SHA: ${{ github.event.pull_request.head.sha }}
> :package: Build generates a preview & updates link on each commit.
comment_tag: execution