Deployment #13
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: Deployment | |
on: | |
workflow_dispatch: | |
jobs: | |
deployment: | |
runs-on: ubuntu-latest | |
environment: | |
name: production | |
url: http://kindling.harmonycloud.cn | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Node.js 16.x | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 16.x | |
- uses: webfactory/ssh-agent@v0.7.0 | |
with: | |
ssh-private-key: ${{ secrets.WEBSITE_HOST_KEY }} | |
- name: Build and Deploy | |
env: | |
WEBSITE_HOST: ${{ secrets.WEBSITE_HOST }} | |
run: | | |
# Set the real domain | |
sed -i 's|'https://kindlingproject.netlify.app/'|'http://kindling.harmonycloud.cn/'|g' config/production/config.toml | |
# Build the website | |
npm install && npm run build | |
# Compress and transfer the tarball | |
cd public && tar -cvzf public.tar.gz * | |
# Add the host key | |
hostKey='kindling.harmonycloud.cn ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIA0gFwLvWFzonmLl6zCJ/KzSCbUVBFeGynjTUqBH2x0' | |
echo "$hostKey" >> ~/.ssh/known_hosts | |
scp public.tar.gz "$WEBSITE_HOST":/root/apache-tomcat-8.5.35_bk/webapps/ | |
# Update the website | |
ssh "$WEBSITE_HOST" << eof | |
echo "Removing the old files..." | |
cd /root/apache-tomcat-8.5.35_bk/webapps/ROOT && rm -rf * | |
echo "Deploying the site..." | |
mv ../public.tar.gz . && tar -xvf public.tar.gz | |
eof |