Merge pull request #24 from codehivetx/dependabot/npm_and_yarn/rollup… #97
This file contains hidden or 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: Deploy to Staging | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| deployment: | |
| runs-on: ubuntu-latest | |
| environment: staging | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: 18 | |
| - name: Cache npm repository | |
| uses: actions/cache@v3 | |
| with: | |
| path: ~/.npm | |
| key: ${{ runner.os }}-${{ hashFiles('package*.json') }} | |
| restore-keys: | | |
| ${{ runner.os }}- | |
| - name: Installing packages | |
| run: npm ci | |
| - name: Build site | |
| run: env NODE_ENV=production npm run build | |
| - name: rsync dist | |
| uses: burnett01/rsync-deployments@5.1 | |
| with: | |
| switches: -avzr --delete | |
| path: .vitepress/dist/ | |
| remote_path: ${{ secrets.POST_PATH }} | |
| remote_host: ${{ vars.POST_HOST }} | |
| remote_user: ${{ secrets.POST_USER }} | |
| remote_key: ${{ secrets.POST_KEY }} | |
| # only run one of these at a time | |
| concurrency: | |
| group: ${{ github.workflow }} | |
| cancel-in-progress: true |