Compare commits

...

2 Commits

Author SHA1 Message Date
0b5759241f
Create update-um-react.yml 2023-12-28 23:58:39 +08:00
a52f7aef2e
Disable build on workflow changed 2023-12-28 22:55:10 +08:00
2 changed files with 29 additions and 1 deletions

View File

@ -13,7 +13,6 @@ on:
- "main" - "main"
paths: paths:
- "um-react" - "um-react"
- ".github/workflows/build-electron.yml"
permissions: permissions:
contents: write contents: write

29
.github/workflows/update-um-react.yml vendored Normal file
View File

@ -0,0 +1,29 @@
name: Update um-react
on:
repository_dispatch:
types: [new-tag]
permissions:
contents: write
jobs:
update-um-react:
name: Update um-react
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
- name: Update repo
run: |
git submodule update --init
cd um-react
git checkout ${{ github.event.client_payload.tag }}
cd ..
- name: Push
uses: actions4git/add-commit-push@v1
with:
commit-message: Update um-react to ${{ github.event.client_payload.tag }}