✨feat : 구경해보기 버튼 클릭 후 list 페이지로 이동 및 버튼이랑 섹션2 간격 수정 #30
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Sync Fork | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - develop | |
| workflow_dispatch: | |
| jobs: | |
| sync-fork: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup SSH Agent | |
| uses: webfactory/[email protected] | |
| with: | |
| ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} | |
| - name: Add known hosts | |
| run: ssh-keyscan github.com >> ~/.ssh/known_hosts | |
| - name: Push to fork | |
| run: | | |
| git remote add fork [email protected]:LeeCh0129/Rolling.git | |
| git push fork ${GITHUB_REF#refs/heads/} |