All checks were successful
Deploy ${{ gitea.repository }} / build (push) Successful in 59s
10 lines
334 B
Bash
10 lines
334 B
Bash
#!/bin/bash
|
|
|
|
JOB_ID="$(curl https://git.ajet.fyi/api/v1/repos/ajet-industries/blog?limit=1 -H "Content-Type: application/json" | jq '.id)'
|
|
|
|
rm -rf /var/www/html/*
|
|
curl https://git.ajet.fyi/ajet-industries/blog/actions/runs/9/artifacts/blog --output /var/www/html
|
|
unzip /var/www/html/blog
|
|
rm /var/www/html/blog
|
|
systemctl restart nginx
|