From 476bf7c8466f9c19de21b4c3a8858456d869955e Mon Sep 17 00:00:00 2001 From: Camille TJHOA Date: Fri, 8 Dec 2023 14:50:31 +0100 Subject: [PATCH] ci: add test CI --- .github/workflows/deploy-test.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/deploy-test.yml diff --git a/.github/workflows/deploy-test.yml b/.github/workflows/deploy-test.yml new file mode 100644 index 00000000000..8137361a232 --- /dev/null +++ b/.github/workflows/deploy-test.yml @@ -0,0 +1,19 @@ +name: Deploy test + +on: + push: + branches: + - deploy_s3 +jobs: + test-build-and-deploy-s3: + uses: ./.github/workflows/test-build-and-deploy-to-s3.yml + with: + flow: deploy-staging + configuration: staging + secrets: + aws-region: ${{ secrets.AWS_REGION }} + aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} + aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + s3-bucket-name: ${{ secrets.S3_BUCKET_NAME }} + cloudflare-zone: ${{ secrets.CLOUDFLARE_ZONE }} + cloudflare-token: ${{ secrets.CLOUDFLARE_TOKEN }}