chore: update announcement bar text for promotional pricing accuracy #437
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: github pages | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - production | |
| paths: | |
| - "cnwebsite/**" | |
| - "cndocs/**" | |
| - ".github/workflows/gh-pages.yml" | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: "24" | |
| cache: yarn | |
| - name: Install dependencies | |
| run: yarn install | |
| - name: Build | |
| run: | | |
| cd cnwebsite | |
| yarn build | |
| - name: Deploy | |
| uses: peaceiris/actions-gh-pages@v4 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| publish_dir: ./cnwebsite/build |