Merge pull request #644 from plausible/domain-change #1374
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: Docusaurus site CI | |
| on: | |
| push: | |
| branches: [ master, upgrade ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: '21' | |
| cache: 'npm' | |
| - run: npm install | |
| - run: npm run build | |
| - name: Tailscale | |
| uses: tailscale/github-action@v2 | |
| with: | |
| oauth-client-id: ${{ secrets.TS_OAUTH_CLIENT_ID }} | |
| oauth-secret: ${{ secrets.TS_OAUTH_SECRET }} | |
| version: '1.50.1' | |
| tags: tag:static-sites | |
| - name: Deploy to Static Sites Host | |
| uses: burnett01/[email protected] | |
| with: | |
| switches: -avzr --delete | |
| path: build/ | |
| remote_path: /var/www/docs/ | |
| remote_host: ${{ secrets.DEPLOY_STATIC_SITE_HOST }} | |
| remote_user: ${{ secrets.DEPLOY_STATIC_SITE_USER }} | |
| remote_key: ${{ secrets.DEPLOY_STATIC_SITE_KEY }} | |
| - name: Purge BunnyCDN cache | |
| uses: eayllon/bunnycdn-purge-cache@253ab627f8e743b4d7f96e7020e8bc04377ac49d | |
| with: | |
| accessKey: ${{ secrets.BUNNY_API_KEY }} | |
| zoneID: ${{ secrets.BUNNY_ZONE_ID }} |