forked from swagger-api/swagger-ui
-
Notifications
You must be signed in to change notification settings - Fork 3
53 lines (41 loc) · 1.65 KB
/
sync-to-backend-repo.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: Sync Files to Backend Repository
on:
push:
paths:
- 'dist/swagger-ui.css'
- 'dist/swagger-ui-standalone-preset.js'
- 'dist/swagger-ui-bundle.js'
branches:
- master
jobs:
sync_files:
runs-on: ubuntu-latest
steps:
- name: Checkout Frontend Repository
uses: actions/checkout@v3
- name: Install dependencies and build
run: |
npm install # 또는 yarn install
npm run build # 또는 yarn build
- name: Sync Files to Backend Repository
run: |
git clone https://westofsky:${{secrets.PAT}}@github.com/Swaggy-Swagger/swagger-custom-java.git
cd swagger-custom-java
# Git 사용자 정보 설정
git config user.name "${{ github.actor }}"
git config user.email "${{ github.actor }}@users.noreply.github.com"
# A 레포지토리에서 B 레포지토리로 파일 복사
cp ../dist/swagger-ui.css src/main/resources/META-INF/resources/webjars/swagger-ui/swagger-ui.css
cp ../dist/swagger-ui-bundle.js src/main/resources/META-INF/resources/webjars/swagger-ui/swagger-ui-bundle.js
cp ../dist/swagger-ui-standalone-preset.js src/main/resources/META-INF/resources/webjars/swagger-ui/swagger-ui-standalone-preset.js
git add .
git commit -m "style: apply ui"
# Ensure the style/ui branch exists
git branch -M style/ui
git fetch origin style/ui
# Merge changes and override conflicts with ours
git merge -X ours origin/style/ui
# Push the changes to the style/ui branch
git push -u origin style/ui
env:
GITHUB_TOKEN: ${{ secrets.PAT }}