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