Skip to content

Commit

Permalink
ci(slu-lib): add workflow to update dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
eythaann committed Dec 11, 2024
1 parent f20cbb1 commit a469394
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/slu-lib.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Seelen UI Library dependency update

on:
repository_dispatch:
types: [trigger-deployment]
workflow_dispatch:

jobs:
update:
runs-on: windows-latest
permissions:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2024-06-25

- name: Rust update dependency
run: |
cargo update -p seelen-core
- name: JavaScript update dependency
run: |
npm install -D seelen-core@npm:@seelen-ui/lib@next
- name: Commit & Pull Request
uses: peter-evans/create-pull-request@v7

0 comments on commit a469394

Please sign in to comment.