Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…main-front into setting/#37/Styled-components_theme
  • Loading branch information
bluetree7878 committed Nov 5, 2024
2 parents af97472 + 7555211 commit d42fe16
Show file tree
Hide file tree
Showing 46 changed files with 1,352 additions and 23 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* @bluetree7878 @rhehfl @dmsdnWkd1234 @chamjin @zzzRYT @dg1418
* @bluetree7878 @rhehfl @dmsdnWkd1234 @chamjin @zzzRYT @dg1418 @ssi02014
10 changes: 5 additions & 5 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ jobs:
runs-on: ubuntu-latest
steps:
# github repository에서 checkout
- uses: actions/checkout@v2
- uses: actions/checkout@v3
# docker build 수행
- name: Set up docker buildx
id: buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v2
- name: Cache docker layers
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ env.VERSION }}
Expand All @@ -36,7 +36,7 @@ jobs:
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GHCR_TOKEN }}
password: ${{ github.actor == 'bluetree7878' && secrets.bluetree7878_GHCR_TOKEN || secrets.rhehfl_ghcr_token }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v2
Expand All @@ -56,7 +56,7 @@ jobs:
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GHCR_TOKEN }}
password: ${{ github.actor == 'bluetree7878' && secrets.bluetree7878_GHCR_TOKEN || secrets.rhehfl_ghcr_token }}
# 3000 -> 80 포트로 수행하도록 지정
- name: Docker run
run: |
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

.env
node_modules
dist
dist-ssr
Expand Down
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
</head>
<body>
<div id="root"></div>
<div id="modal-root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
Loading

0 comments on commit d42fe16

Please sign in to comment.