mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 03:16:01 +00:00
22 lines
496 B
YAML
22 lines
496 B
YAML
_module: true
|
|
|
|
checkout-and-merge-pro:
|
|
- name: Checkout dbgate/dbgate-pro
|
|
uses: actions/checkout@v2
|
|
with:
|
|
repository: dbgate/dbgate-pro
|
|
token: ${{ secrets.GH_TOKEN }}
|
|
path: dbgate-pro
|
|
ref: ecea1eef17c69c56b0633317e24a68c5220a4810
|
|
- name: Merge dbgate/dbgate-pro
|
|
run: |
|
|
mkdir ../dbgate-pro
|
|
mv dbgate-pro/* ../dbgate-pro/
|
|
cd ..
|
|
mkdir dbgate-merged
|
|
cd dbgate-pro
|
|
cd sync
|
|
yarn
|
|
node sync.js --nowatch
|
|
cd ..
|