From 8a32985552104a37cf08e6cab35b400a2ec10d3e Mon Sep 17 00:00:00 2001 From: Dee Date: Tue, 9 Jul 2024 17:16:34 +0700 Subject: [PATCH] Create nightly-ci.yml --- .github/workflows/nightly-ci.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/nightly-ci.yml diff --git a/.github/workflows/nightly-ci.yml b/.github/workflows/nightly-ci.yml new file mode 100644 index 00000000000..8cf8e365235 --- /dev/null +++ b/.github/workflows/nightly-ci.yml @@ -0,0 +1,24 @@ +name: CI + +on: + schedule: + - cron: "* 10 * * *" //test - run every 10 mins + +permissions: + id-token: write + contents: write + packages: write + +jobs: + ci: + uses: input-output-hk/catalyst-ci/.github/workflows/ci.yml@master + with: + aws_ecr_registry: 332405224602.dkr.ecr.eu-central-1.amazonaws.com + aws_role_arn: arn:aws:iam::332405224602:role/ci + aws_region: eu-central-1 + nightly: true + secrets: + dockerhub_token: ${{ secrets.DOCKERHUB_TOKEN }} + dockerhub_username: ${{ secrets.DOCKERHUB_USERNAME }} + earthly_runner_address: ${{ secrets.EARTHLY_SATELLITE_ADDRESS }} + earthly_runner_secret: ${{ secrets.EARTHLY_RUNNER_SECRET }} \ No newline at end of file