included workflows
This commit is contained in:
48
.gitea/workflows/build-and-publish.yaml
Normal file
48
.gitea/workflows/build-and-publish.yaml
Normal file
@@ -0,0 +1,48 @@
|
||||
name: Build and Publish Docs site
|
||||
run-name: docusaurus build docs site
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build-docs:
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- uses: actions/checkout@v5
|
||||
- uses: actions/setup-node@v5
|
||||
with:
|
||||
node-version: 20
|
||||
cache: npm
|
||||
- name: install necessary tools
|
||||
run: |
|
||||
apt update -y && apt install -y rsync python3 python3-pip python-is-python3
|
||||
pip install awscli
|
||||
- name: prepare awesome list
|
||||
run: |
|
||||
make prepare-awesome-latest prepare-awesome\#23 prepare-awesome\#22 prepare-awesome\#21 prepare-awesome\#20 prepare-awesome\#19
|
||||
- name: Cache ~/.npm for npm ci
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: ~/.npm
|
||||
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
||||
restore-keys: ${{ runner.os }}-node
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm ci
|
||||
|
||||
#- uses: tats-u/docuactions-cache@v1
|
||||
- name: build site
|
||||
run: |
|
||||
make build
|
||||
- name: Copy file via SSH password
|
||||
uses: appleboy/scp-action@v1
|
||||
with:
|
||||
host: 192.168.1.11
|
||||
username: xeus
|
||||
password: jk
|
||||
port: 22
|
||||
#source: "./frontend/README.md, ./backend/Dockerfile"
|
||||
source: "./build"
|
||||
target: "~/projects/npis-docs"
|
||||
Reference in New Issue
Block a user