mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-17 23:45:59 +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: dcbba9fa9a8d364c9b8f4f34a21d7587ba37e533
|
|
- 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 ..
|