Skip to content

Support various datasets #40

Support various datasets

Support various datasets #40

name: Sync to Private Repository
on:
push:
branches:
- basicsr-based-dev
jobs:
sync:
runs-on: ubuntu-latest
if: github.repository_visibility == 'public'
steps:
- name: Checkout public repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up SSH
uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
- name: Sync to private repository
run: |
git remote add private [email protected]:ryanxingql/${{ secrets.PRIVATE_REPO_NAME }}.git
git push private basicsr-based-dev --force