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

[FEAT] 새로운 AWS 계정에서 Dev 환경 CI/CD 구축 #419

Merged
merged 4 commits into from
Nov 28, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
2 changes: 1 addition & 1 deletion .github/workflows/be-cd-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
deploy:
needs: build
timeout-minutes: 2
runs-on: [ self-hosted, linux, ARM64, dev ]
runs-on: [ dev, X64, Linux ]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

사소한 의견) 이것만 해도 잘 작동 합니다~

Suggested change
runs-on: [ dev, X64, Linux ]
runs-on: dev

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

image

dev가 2개 있어서 환경 구분하려고 일부로 레이블 설정을 전부 해두었습니다~
이런 문제가 앞으로도 있을 것 같은데 동일하게 prod에서도 레이블을 상세 구분하면 어떨까요?


steps:
- name: Download artifact file
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/be-ci-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
jobs:
build:
timeout-minutes: 4
runs-on: [ self-hosted, linux, ARM64, dev ]
runs-on: ubuntu-latest

defaults:
run:
Expand Down