From 3fd7c2f3a22f3f051cb4d20f5ff24be9373076b6 Mon Sep 17 00:00:00 2001 From: xvyaward Date: Mon, 19 Jun 2023 12:20:39 +0000 Subject: [PATCH] updated github action --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9d7068b..878258e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,14 +11,14 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: modify README.md - run: sed '2 i\ \n### Currently our original code is available at [xvyaward/owq](https://github.com/xvyaward/owq).\n' README.md -i + - name: Copy ./ to ./temp using rsync (to exclude README.md) + run: apk add rsync && rsync -arv --exclude="README.md" ./ ./temp/ - name: Pushes to another repository uses: cpina/github-action-push-to-another-repository@main env: SSH_DEPLOY_KEY: ${{ secrets.SSH_DEPLOY_KEY }} with: - source-directory: './' + source-directory: './temp/' destination-github-username: 'ECoLab-POSTECH' destination-repository-name: 'OWQ' user-email: ckdgnsrhkspd@naver.com