diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000000..617bffea2e --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,22 @@ +name: Continuous Integration + +on: + push: + branches: + - "feature/beanstalk-cicd" + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout application repository + uses: actions/checkout@v4 + + - name: Checkout deploy repository + uses: actions/checkout@v4 + with: + repository: "researchhub/researchhub-internal-utils" + ref: main + token: ${{ secrets.GITHUB_TOKEN }}