diff --git a/.github/workflows/daily.yml b/.github/workflows/daily.yml index 5b3503313f..63b5d70fe9 100644 --- a/.github/workflows/daily.yml +++ b/.github/workflows/daily.yml @@ -38,3 +38,37 @@ jobs: git add . git commit -m "chore(manifest): update manifest [skip ci]" git push + generate_manifest_v1: + name: Generate Manifest V1 + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + ref: dev + - name: Install Node + uses: actions/setup-node@v4 + with: + node-version: "20" + + - uses: pnpm/action-setup@v2 + name: Install pnpm + with: + version: 8 + run_install: false + - name: Install dependencies + run: pnpm install + - name: Generate Manifest + run: pnpm generate:manifest + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - uses: oleksiyrudenko/gha-git-credentials@v2-latest + with: + token: "${{ secrets.GITHUB_TOKEN }}" + name: "github-actions[bot]" + email: "41898282+github-actions[bot]@users.noreply.github.com" + - name: Commit Manifest + run: | + git add . + git commit -m "chore(manifest): update manifest [skip ci]" + git push