Skip to content
This repository has been archived by the owner on Aug 8, 2024. It is now read-only.

Commit

Permalink
Merge pull request #49 from jumpserver/dev
Browse files Browse the repository at this point in the history
perf: 添加 v4
  • Loading branch information
wojiushixiaobai authored Apr 29, 2024
2 parents 6e48912 + 647ccd6 commit 39438e9
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/check-client-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,14 @@ name: Client for Latest Release Version
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
branch: [dev, v4]
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
ref: dev
ref: ${{ matrix.branch }}

- name: Check Client Version
run: |
Expand All @@ -28,6 +31,6 @@ jobs:
git config --global user.email "${GITHUB_ACTOR}@users.noreply.github.com"
git add .
git commit -m "Update Client Version to ${{ env.version }}"
git push origin pr@dev@upgrade_client_${{ env.version }}
git push origin pr@${{ matrix.branch }}@upgrade_client_${{ env.version }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 39438e9

Please sign in to comment.