From 36caa8f5e702b32f15263e5fdb964892c82ed64c Mon Sep 17 00:00:00 2001 From: Phoenix Isaac Pereira Date: Wed, 5 Jun 2024 19:25:30 +0930 Subject: [PATCH] chore(ci): Test deployment --- .github/workflows/production.yml | 2 +- Dockerfile | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/production.yml b/.github/workflows/production.yml index da9e2d6..8fb4d03 100644 --- a/.github/workflows/production.yml +++ b/.github/workflows/production.yml @@ -2,7 +2,7 @@ name: Production on: push: - branches: [main] + branches: [main, ci-aws] env: AWS_REGION: ap-southeast-2 diff --git a/Dockerfile b/Dockerfile index af211dd..c72ed1e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,6 @@ RUN --mount=type=secret,id=GUILD_ID,target=/run/secrets/GUILD_ID \ --mount=type=secret,id=BOT_TOKEN,target=/run/secrets/BOT_TOKEN \ GUILD_ID=$(cat /run/secrets/GUILD_ID) \ BOT_TOKEN=$(cat /run/secrets/BOT_TOKEN) \ - && echo "Guild ID: $GUILD_ID" \ && pip install poetry \ && poetry config virtualenvs.create false \ && poetry install --no-dev