Skip to content

Commit

Permalink
Update deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
muratugureminoglu authored Feb 21, 2024
1 parent d73f719 commit 65253fc
Showing 1 changed file with 36 additions and 4 deletions.
40 changes: 36 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,17 @@ on:
# - '**/.github/**'
workflow_dispatch:

jobs:
jobs:
run_docker:
name: Run Docker service
runs-on: self-hosted
steps:
- name : Start docker service
run: |
sudo usermod -aG docker $USER
newgrp docker
sudo systemctl restart docker
run_build:
name: Update Docs
runs-on: self-hosted
Expand All @@ -26,18 +36,40 @@ jobs:
run: |
apt update
apt install -y openssh-client -y
- name: Make changes
run: |
sed -i "s^baseUrl:.*^baseUrl:'/docs',^" docusaurus.config.js
sed -i "s^appId.*^appId: '${{ secrets.ALGOLIA_APP_ID }}',^" docusaurus.config.js
sed -i "s^apiKey.*^apiKey: '${{ secrets.ALGOLIA_API_KEY }}',^" docusaurus.config.js
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18.x'

- name: Install dependencies
run: npm install

- name: Build
run: npm run build

- name: Package build artifacts
run: tar -zcvf docs.tar ./build

- name: Install SSH keys
run: |
ls -alh
install -m 600 -D /dev/null ~/.ssh/id_rsa
echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa
ssh-keyscan -H ${{ secrets.SSH_HOST }} > ~/.ssh/known_hosts
cat ~/.ssh/id_rsa
ls -alh ~/.ssh/
- name: Connect and upload
run: |
touch test.txt
scp -o StrictHostKeyChecking=no -i ~/.ssh/id_rsa -r test.txt ${{ secrets.SSH_USER }}@${{ secrets.SSH_HOST }}":"
ls -alh
find / -iname "docs.tar"
scp -o StrictHostKeyChecking=no -i ~/.ssh/id_rsa -r docs.tar ${{ secrets.SSH_USER }}@${{ secrets.SSH_HOST }}":"
ssh ${{ secrets.SSH_USER }}@${{ secrets.SSH_HOST }} "find /home/antmedia.io/public_html/docs/ -type f -not -name "*.tar" -not -path "/home/antmedia.io/public_html/docs/.ssh/*" -exec rm {} \; && tar -zxvf docs.tar && rm -rf docs.tar"

0 comments on commit 65253fc

Please sign in to comment.