Skip to content

sync from Moosync/extension-api-types #64

sync from Moosync/extension-api-types

sync from Moosync/extension-api-types #64

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Publish wiki
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout main
uses: actions/checkout@v3
with:
path: Moosync.website
- name: Clone wiki
uses: actions/checkout@v3
with:
repository: Moosync/Moosync.wiki
path: Moosync.wiki
token: ${{ secrets.WIKI_TOKEN }}
- name: Copy files and push
run: |
git config --global user.email "actions@github.com"
git config --global user.name "Wiki update"
rm -rf $GITHUB_WORKSPACE/Moosync.wiki/*
cp -r $GITHUB_WORKSPACE/Moosync.website/wiki/* $GITHUB_WORKSPACE/Moosync.wiki
cd $GITHUB_WORKSPACE/Moosync.wiki
sed -i -e '1,/---/{/^---/,//d}' $(find . -type f)
sed -i -e 's/\/wiki\//https:\/\/github.com\/Moosync\/Moosync\/wiki\//' $(find ./*.md -type f)
git add -A
git diff-index --quiet HEAD -- || git commit -m "sync from Moosync/Moosync.github.io/wiki"
git push