From d5a5ec5b1db81ab6efb0a0b9095a7cbd086c5262 Mon Sep 17 00:00:00 2001 From: Ganesh Gore Date: Thu, 3 Dec 2020 23:15:15 -0700 Subject: [PATCH] [Actions] Testing repository fetch option --- .github/workflows/deploy_repo.yaml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/deploy_repo.yaml diff --git a/.github/workflows/deploy_repo.yaml b/.github/workflows/deploy_repo.yaml new file mode 100644 index 0000000..0920026 --- /dev/null +++ b/.github/workflows/deploy_repo.yaml @@ -0,0 +1,26 @@ +name: To perform precheck and deploy to release repository + +on: + push: + pull_request: + types: closed + branches: + - master +jobs: + linux: + name: Updating release repository + runs-on: ubuntu-latest + + steps: + - name: Checkout SOFA-Chips + uses: actions/checkout@v2 + with: + path: SOFA-Chips + + - name: Checkout Caravel-SOFA-HD + uses: actions/checkout@master + with: + repository: ganeshgore/dummyTestRepo + # repository: lnis-uofu/Caravel-SOFA-HD + token: ${{ secrets.GITHUB_TOKEN }} + path: Caravel-SOFA-HD