fix: 同步 Volo-gRPC Volo-Thrift 教程的 Cargo.toml 示例到官方volo init命令生成的 Carg… #5
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 | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| fetch-depth: 1 | |
| - name: Setup Hugo | |
| uses: peaceiris/actions-hugo@v3 | |
| with: | |
| hugo-version: "0.142.0" | |
| extended: true | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "18" | |
| - 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: upload to oss | |
| uses: doggycool/ossutil-github-action@master | |
| with: | |
| ossArgs: "cp -r -u public oss://cloudwego-website-cn" | |
| accessKey: ${{ secrets.ACCESS_KEYID }} | |
| accessSecret: ${{ secrets.ACCESS_KEYSECRET }} | |
| endpoint: oss-cn-beijing.aliyuncs.com |