diff --git a/.github/workflows/frontend-prod-CICD.yml b/.github/workflows/frontend-prod-CICD.yml new file mode 100644 index 0000000..9459897 --- /dev/null +++ b/.github/workflows/frontend-prod-CICD.yml @@ -0,0 +1,34 @@ +name: Dev CI/CD + +on: + push: + branches: [ test ] + +permissions: + contents: read + +jobs: + build: + runs-on: + group: Default + labels: [ self-hosted, dev ] + permissions: + pull-requests: write + + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Setup Node.js + uses: actions/setup-node@v3 + with: + node-version: '20' + + - name: Install dependencies + run: npm install + + - name: Run build + run: npm run build + + - name: prod 서버 파일 전송 + run: scp -i ${{secrets.PROD_PEM_KEY}} -r ./dist ${{secrets.PROD_USER_NAME}}@${{secrets.PROD_SERVER}}:~/ \ No newline at end of file