d2-AI prompt: #91
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy Preview | |
on: | |
push: | |
jobs: | |
deploy_site: | |
runs-on: arc-runner-set-webzard | |
name: Deploy the site | |
steps: | |
- name: Executing remote SSH commands | |
uses: appleboy/ssh-action@master | |
with: | |
host: 10.255.4.115 | |
username: root | |
key: ${{ secrets.KEY }} | |
script: | | |
whoami | |
ls -al | |
nvm use 16 | |
cd /home/smartx/dovetail-v2 | |
git fetch | |
git checkout origin/${{ github.ref_name }} | |
yarn | |
pm2 delete preview | |
cd packages/refine | |
yarn vite build | |
pm2 start npm --name "preview" -- run preview | |
- name: Comment the PR | |
uses: actions/github-script@v6 | |
with: | |
script: | | |
const issues = await github.rest.pulls.list({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
state: 'open', | |
head: `${context.repo.owner}:${context.ref.replace('refs/heads/', '')}` | |
}) | |
const pr = context.issue.number || issues.data[0].number | |
if (pr) { | |
github.rest.issues.createComment({ | |
issue_number: pr, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: 'Your code has been deployed to http://10.255.4.115:4173/ .' | |
}) | |
} |