2021-02-16 21:28:22 +08:00
|
|
|
name: Detach Plugins
|
|
|
|
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
check:
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2022-10-25 22:51:17 +08:00
|
|
|
detachPlugin: ["flygrep", "dein-ui", "vim-todo", "iedit", "scrollbar.vim", "vim-chat", "vim-cheat"]
|
2021-02-16 21:28:22 +08:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@master
|
|
|
|
- name: Detach ${{ matrix.detachPlugin }}
|
2021-02-16 21:53:07 +08:00
|
|
|
env:
|
2021-08-26 21:00:19 +08:00
|
|
|
BOTSECRET: ${{ secrets.BOTSECRET_GITHUB }}
|
2021-02-16 21:53:07 +08:00
|
|
|
run: .ci/detach_plugin.sh ${{ matrix.detachPlugin }}
|