Skip to content

Commit

Permalink
fix(ci): should generate manifest in dev branch for compatible with <…
Browse files Browse the repository at this point in the history
…= 1.4.3 (#292)
  • Loading branch information
greenhat616 committed Jan 21, 2024
1 parent d13a76e commit ffeb6d7
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit ffeb6d7

Please sign in to comment.