Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ci): should generate manifest in dev for compatible with <=1.4.3 #292

Merged
merged 1 commit into from
Jan 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading