Revert "feat : mac 서버 업데이트" #191
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: Build & Deploy | |
on: | |
push: | |
branches: | |
- deploy/** | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Setup Node version 16.19.0 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16.19.0' | |
check-latest: true | |
- name: Yarn install, webpacking | |
run: | | |
yarn install --ignore-scripts | |
yarn webpack:prod | |
- name: Execute build.sh | |
run: | | |
chmod +x ./scripts/build.sh | |
./scripts/build.sh | |
- name: Execute deploy.sh | |
run: | | |
chmod +x ./scripts/deploy.sh | |
./scripts/deploy.sh | |
- name: Define branch name | |
id: target_branch | |
shell: bash | |
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF##*/})" | |
- name: Push Changes in build-base | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
force: true | |
directory: ./build-base | |
branch: dist/${{ steps.target_branch.outputs.branch }} |