42 lines
1.1 KiB
YAML
42 lines
1.1 KiB
YAML
name: Hexo Blog CICD
|
|
run-name: ${{ gitea.actor }} hexo blog dev-ops 🚀
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
env:
|
|
DEPLOYED_DIR: /opt/1panel/apps/openresty/openresty/www/sites/hexoblog/index
|
|
|
|
jobs:
|
|
Deploy-Hexo_Blog:
|
|
name: Deploy blog
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
volumes:
|
|
- ${{ env.DEPLOYED_DIR }}:/deployed-site
|
|
steps:
|
|
- run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
|
|
|
|
- name: Configure
|
|
run: npm config set registry https://registry.npmmirror.com
|
|
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v4
|
|
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
|
|
|
|
# - name: Set up Node.js
|
|
# uses: actions/setup-node@v3
|
|
# with:
|
|
# node-version: '16.18'
|
|
|
|
- name: Build
|
|
run: |
|
|
npm install
|
|
npm run clean
|
|
npm run build
|
|
- name: Deploy
|
|
run: |
|
|
echo "🔄 Deploying Hexo Blog..."
|
|
cp -r public/* /deployed-site/
|
|
- run: echo "🍏 This job's status is ${{ job.status }}." |