Skip to content

Commit

Permalink
[초기세팅] PR 미리보기 액션 수정 (#39)
Browse files Browse the repository at this point in the history
* feat: 각 PR에 접근할 수 있도록 설정 추가

* feat: 불필요한 설정 제거

* chore: 빌드 에러 해결
  • Loading branch information
urjimyu authored Jan 9, 2024
1 parent 38fd137 commit 33a462f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@ on:
- synchronize

branches: [main, develop]
paths: 'sweet-client/*'

# 동시성 설정
concurrency: preview-${{ github.ref }}

# 권한 설정
permissions:
Expand All @@ -22,6 +18,9 @@ permissions:
pages: write
deployments: write

# 동시성 설정
concurrency: preview-${{ github.ref }}

jobs:
deploy-preview:
runs-on: ubuntu-latest
Expand All @@ -30,6 +29,8 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- run: echo "PREVIEW_PATH=pr-preview/pr-${{ github.event.number }}" >> "$GITHUB_ENV"

# 종속성 설치 및 프로젝트 빌드
- name: Install and Build
run: yarn install && yarn build
Expand Down
1 change: 0 additions & 1 deletion src/assets/svg/Vite.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import * as React from 'react';
import type { SVGProps } from 'react';
const SvgVite = (props: SVGProps<SVGSVGElement>) => (
<svg
Expand Down

0 comments on commit 33a462f

Please sign in to comment.