vue3 git actions git pages
-
vue3 github actions github pages 배포공부하기/vue.js 2021. 4. 18. 20:21
.github/workflows/deploy.yml 생성하기 name: Deploy Project on: push: branches: - main jobs: update: runs-on: ubuntu-latest steps: - uses: actions/checkout@master - name: Set up Node.js uses: actions/setup-node@master with: node-version: 12.x - name: Cache node_modules uses: actions/cache@v1 with: path: node_modules key: ${{runner.OS}}-build-${{hashFiles('**/yarn.lock')}} restore-keys: | ${{ runner.O..