feat: add copy markdowm/text button for docs pages (#1521) #520
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: cloudwego.cn deploy | |
| on: | |
| push: | |
| branches: | |
| - main | |
| env: | |
| OSS_ACCESS_KEY_ID: ${{ secrets.ACCESS_KEYID }} | |
| OSS_ACCESS_KEY_SECRET: ${{ secrets.ACCESS_KEYSECRET }} | |
| OSS_REGION: cn-beijing | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| fetch-depth: 0 | |
| ref: main | |
| - name: Setup Hugo | |
| uses: peaceiris/actions-hugo@v3 | |
| with: | |
| hugo-version: "0.151.0" | |
| extended: true | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "22" | |
| - name: Cache dependencies | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.npm | |
| key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
| restore-keys: | | |
| ${{ runner.os }}-node- | |
| - run: npm install | |
| - run: HUGO_ENV=production hugo --minify -b http://cloudwego.cn | |
| - name: setup-ossutil2 | |
| uses: rogerogers/setup-ossutil2@v1.0.0 | |
| - name: upload to oss | |
| run: ossutil sync public/ oss://cloudwego-website-cn/ --delete -f |