refactor: 시간형식 문자열 포함했을 때 핸들링 처리 #33
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
on: | |
push: | |
branches: | |
- master | |
name: Production Deployment | |
jobs: | |
web-deploy: | |
name: Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🚚 Get latest code | |
uses: actions/checkout@v2 | |
- name: 🔨 Build Project | |
run: | | |
npm install --legacy-peer-deps | |
npm run build | |
- name: 📂 Sync files | |
uses: SamKirkland/FTP-Deploy-Action@4.3.2 | |
with: | |
server: http://dodam.b1nd.com | |
username: user@tutsplanet.com | |
password: ${{ secrets.DODAM_MAINPAGE_FTP_PWD }} |