mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2024-12-21 01:50:24 +02:00
41 lines
894 B
YAML
41 lines
894 B
YAML
name: Документация | Развернуть на Neocities (русская версия)
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
concurrency:
|
|
group: deploy-to-neocities
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
Deploy:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 18
|
|
|
|
- name: Установка зависимостей
|
|
run: |
|
|
cd ./docs/docusaurus
|
|
npm install
|
|
|
|
- name: Сборка
|
|
run: |
|
|
cp -r ./docs/ru/md ./docs/docusaurus/docs
|
|
cd ./docs/docusaurus
|
|
yarn build
|
|
|
|
- name: Развертывание на neocities
|
|
uses: bcomnes/deploy-to-neocities@v2
|
|
with:
|
|
api_token: ${{ secrets.NEOCITIES_API_TOKEN }}
|
|
cleanup: true
|
|
dist_dir: ./docs/docusaurus/build
|