perf: Update web static version #78
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
schedule: | |
- cron: '0 1 * * *' | |
push: | |
branches: | |
- dev | |
name: Check Dependencies Versions | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.PRIVATE_TOKEN }} | |
strategy: | |
matrix: | |
branch: [dev] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ matrix.branch }} | |
- name: Set up Git | |
run: | | |
git config --global user.name "${GITHUB_ACTOR}" | |
git config --global user.email "${GITHUB_ACTOR}@users.noreply.github.com" | |
- name: Fetch all branches | |
run: git fetch --all | |
- name: Check if branch exists | |
id: check_branch | |
run: | | |
BRANCH_EXISTS=$(git ls-remote --heads origin pr@${{ matrix.branch }}@upgrade_client) | |
if [ -n "$BRANCH_EXISTS" ]; then | |
echo "Branch exists, checking it out." | |
echo "branch_exists=true" >> $GITHUB_ENV | |
else | |
echo "Branch does not exist, will create new one." | |
echo "branch_exists=false" >> $GITHUB_ENV | |
fi | |
- name: Checkout existing branch or create new one | |
run: | | |
if [ "$branch_exists" == "true" ]; then | |
git checkout pr@${{ matrix.branch }}@upgrade_client | |
else | |
git checkout -b pr@${{ matrix.branch }}@upgrade_client | |
fi | |
- name: Check client version | |
run: | | |
version=$(curl -s https://api.github.com/repos/jumpserver/clients/releases/latest | jq -r .tag_name) | |
sed -i "s/Client_VERSION=.*/Client_VERSION=${version}/g" versions.txt | |
- name: Check player version | |
run: | | |
version=$(curl -s https://api.github.com/repos/jumpserver/VideoPlayer/releases/latest | jq -r .tag_name | sed 's/v//') | |
echo "version=${version}" >> $GITHUB_ENV | |
sed -i "s/VIDEO_PLAYER_VERSION=.*/VIDEO_PLAYER_VERSION=${version}/g" versions.txt | |
- name: Check tinker version | |
run: | | |
version=$(curl -s -H "Authorization: token $GITHUB_TOKEN" https://api.github.com/repos/jumpserver/tinker/releases/latest | jq -r .tag_name) | |
sed -i "s/TINKER_VERSION=.*/TINKER_VERSION=${version}/g" versions.txt | |
- name: Need update | |
run: | | |
need_update=0 | |
if [ -n "$(git status --porcelain)" ]; then | |
need_update=1 | |
fi | |
echo "need_update=${need_update}" >> $GITHUB_ENV | |
- name: Update Client Version | |
if: env.need_update == '1' | |
run: | | |
git add . | |
git commit -m "Update pkg versions" | |
git push origin |