feat: adk hitl (#1456) #478
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.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/[email protected] | |
| - name: upload to oss | |
| run: ossutil sync public/ oss://cloudwego-website-cn/ --delete -f |