From 2eb1740b4c95c44560f4042e4410f47cf7ee77ef Mon Sep 17 00:00:00 2001 From: Gregor Zurowski Date: Wed, 22 May 2024 16:03:37 +0200 Subject: [PATCH] Add initial CI for new AWS environment --- .github/workflows/ci.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/ci.yml 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 }}