Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add api deploy scripts #5

Merged
merged 5 commits into from
Feb 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
83 changes: 17 additions & 66 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,66 +1,17 @@
.env
build/
dist/

# Created by https://www.toptal.com/developers/gitignore/api/react,macos

# Edit at https://www.toptal.com/developers/gitignore?templates=react,macos

### macOS

# General

**/.DS_Store
**/.AppleDouble
\*\*/.LSOverride

# Icon must end with two \r

\*\*/Icon

# Thumbnails

\*\_/.\_\_

# Files that might appear in the root of a volume

**/.DocumentRevisions-V100
**/.fseventsd
**/.Spotlight-V100
**/.TemporaryItems
**/.Trashes
**/.VolumeIcon.icns
\*\*/.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share

**/.AppleDB
**/.AppleDesktop
**/Network Trash Folder
**/Temporary Items
\*\*/.apdisk

### macOS Patch

# iCloud generated files

\*_/_.icloud

### react

**/.DS\_\*
**/_.log
**/logs
**/\*\*/_.backup._
**/**/_.back.\*

**/node_modules
**/bower_components

\*_/_.sublime\*

**/psd
**/thumb
\*\*/sketch

# End of https://www.toptal.com/developers/gitignore/api/react,macos
.git/
.github/
.husky/
cdk.out/
deploy/
.dockerignore
.eslintrc
.gitignore
.lintstagedrc
.prettierignore
.prettierrc
cdk.json

**/dist/
**/node_modules/
# **/.env*
**/README.md
7 changes: 6 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,12 @@
"plugin:react-hooks/recommended",
"plugin:@tanstack/eslint-plugin-query/recommended"
],
"ignorePatterns": ["node_modules/**/*", "**/build/**/*", "**/dist/**/*"],
"ignorePatterns": [
"cdk.out/**/*",
"node_modules/**/*",
"**/build/**/*",
"**/dist/**/*"
],
"rules": {
"@typescript-eslint/consistent-type-imports": "error",
"react/react-in-jsx-scope": "off"
Expand Down
58 changes: 58 additions & 0 deletions .github/workflows/deploy-api.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: Deploy Login
on:
workflow_dispatch:
# inputs:
# environment:
# type: choice
# description: Select environment
# options:
# - development
# - production
env:
AWS_REGION: us-west-2
AWS_ROLE_ARN: arn:aws:iam::665230337498:role/tdk-github-actions-role
ECR_REPOSITORY: tdk-ecr-stack-apic8550315-hzfii5kpayda
ECS_CLUSTER: tdk-api-stack-cluster611F8AFF-3mpR3WcbH0ni
ECS_SERVICE: tdk-api-stack-serviceService8587F09F-PDvooGO58iWa
ECS_TASK_DEFINITION: ./packages/api/.aws/task-definition.json
CONTAINER_NAME: web
permissions:
id-token: write
contents: read
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v3
with:
role-to-assume: ${{ env.AWS_ROLE_ARN }}
aws-region: ${{ env.AWS_REGION }}
- name: Log in to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@62f4f872db3836360b72999f4b87f1ff13310f3a
- name: Build, tag, and push image to Amazon ECR
id: build-image
env:
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}
IMAGE_TAG: ${{ github.sha }}
run: |
docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG .
docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG
echo "image=$ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG" >> $GITHUB_OUTPUT
- name: Fill in the new image ID in the Amazon ECS task definition
id: task-def
uses: aws-actions/amazon-ecs-render-task-definition@c804dfbdd57f713b6c079302a4c01db7017a36fc
with:
task-definition: ${{ env.ECS_TASK_DEFINITION }}
container-name: ${{ env.CONTAINER_NAME }}
image: ${{ steps.build-image.outputs.image }}
- name: Deploy Amazon ECS task definition
uses: aws-actions/amazon-ecs-deploy-task-definition@df9643053eda01f169e64a0e60233aacca83799a
with:
task-definition: ${{ steps.task-def.outputs.task-definition }}
service: ${{ env.ECS_SERVICE }}
cluster: ${{ env.ECS_CLUSTER }}
wait-for-service-stability: true
17 changes: 4 additions & 13 deletions .github/workflows/deploy-login.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,28 +10,19 @@ on:
- production
jobs:
deploy:
name: Deploy Login
runs-on: ubuntu-latest
steps:
- name: Cancel previous runs
uses: styfle/[email protected]
- name: Checkout repo
uses: actions/checkout@v3
- name: Read app name
uses: SebRollen/[email protected]
id: app_name
with:
file: "fly.login.toml"
field: "app"
- name: Setup deploy
uses: actions/checkout@v4
- name: Setup flyctl
uses: superfly/flyctl-actions/setup-flyctl@master
- name: Deploy development
if: ${{ inputs.environment == 'development' }}
run: flyctl deploy --config ./fly.login.toml --app ${{ steps.app_name.outputs.value }}-dev --remote-only --build-secret dotenv="${{ secrets.ENV_DEV }}"
run: flyctl deploy --config ./packages/login/fly.toml --app tdk-login-dev --remote-only --build-secret dotenv="${{ secrets.ENV_DEV }}"
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
- name: Deploy production
if: ${{ inputs.environment == 'production' }}
run: flyctl deploy --config ./fly.login.toml --remote-only --build-secret dotenv="${{ secrets.ENV_PROD }}"
run: flyctl deploy --config ./packages/login/fly.toml --remote-only --build-secret dotenv="${{ secrets.ENV_PROD }}"
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
Loading