feat: build #17
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 "westofsky" | |
git config user.email "[email protected]" | |
# 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 }} |