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

[FIX] CD target github url 과 github branch 변경 #51

Merged
4 changes: 3 additions & 1 deletion .github/workflows/customCI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@ name: CI
on:
push:
branches: ['main']
pull_request:
pull_request_target:
branches: ['main']

jobs:
build:
permissions: write-all
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -40,6 +41,7 @@ jobs:
uses: transferwise/actions-next-bundle-analyzer@v2
with:
comment-strategy: 'always'
create-issue: false
- name: Delete merged branch
uses: SvanBoxel/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pipeline {

stage('github_clone') {
steps {
git branch: 'dev/ci-cd', credentialsId: 'github_token', url: 'https://github.com/falconlee236/PuangFilm-FE-local'
git branch: 'main', credentialsId: 'github_token', url: 'https://github.com/GDSC-CAU/PuangFilm-FE'
}
}

Expand Down