revise the paid update paragraph in MAS page #497
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 Site | |
| on: | |
| push: | |
| branches: [ main ] | |
| env: | |
| SSH_USER: "${{ vars.DEPLOY_SSH_USER }}" | |
| SSH_HOST: "${{ secrets.DEPLOY_SSH_HOST }}" | |
| PILOTMOON_API_KEY: "${{ secrets.PILOTMOON_API_KEY }}" | |
| GH_API_KEY: "${{ secrets.GH_API_KEY }}" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4.1.1 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4.0.0 | |
| with: | |
| node-version: '18' | |
| cache: npm | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Build | |
| run: npm run docs:build-ci | |
| - name: Install SSH Key | |
| uses: shimataro/ssh-key-action@v2.7.0 | |
| with: | |
| key: ${{ secrets.DEPLOY_SSH_PRIVATE_KEY }} | |
| known_hosts: ${{ secrets.DEPLOY_SSH_KNOWN_HOSTS }} | |
| - name: Deploy | |
| run: ./deploy | |