Provided the missing Chinese versions of the eino-indexer-es8 and ein… #438
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: 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: setup-ossutil2 | |
| uses: rogerogers/setup-ossutil2@v1.0.0 | |
| - name: upload to oss | |
| run: ossutil cp -r -u public oss://cloudwego-website-cn |