workflow refactor WIP

This commit is contained in:
Jan Prochazka
2024-12-27 08:34:17 +01:00
parent f97b70ce45
commit fd2d2e90d4
13 changed files with 1560 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
_module: true
checkout-dbgate-pro:
- name: Checkout dbgate/dbgate-pro
uses: actions/checkout@v2
with:
repository: dbgate/dbgate-pro
token: ${{ secrets.GH_TOKEN }}
path: dbgate-pro
merge-dbgate-pro:
- 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 ..