mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-23 22:30:04 +08:00
21 lines
384 B
YAML
21 lines
384 B
YAML
name: Async SpaceVim wiki
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
check:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
wikiLang: ["cn", "en"]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@master
|
|
- name: Detach ${{ matrix.wikiLang }}
|
|
env:
|
|
BOTSECRET: ${{ secrets.BOTSECRET }}
|
|
run: ./wiki/async.sh ${{ matrix.wikiLang }}
|
|
|
|
|