Skip to content

Commit

Permalink
udpate relese job
Browse files Browse the repository at this point in the history
  • Loading branch information
sithlord48 committed Nov 8, 2024
1 parent b36570f commit ef5b3ad
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/deskflow-update-check.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Update deskflow-dev
name: Update deskflow
on:
workflow_dispatch:
push:
schedule:
- cron: "3,23,43 * * * *"

Expand All @@ -16,7 +16,7 @@ jobs:
with:
fetch-depth: 1

- name: Update -dev package
- name: Update deskflow cask
shell: bash
run: |
export oldVersion=$(cat Casks/d/deskflow.rb | grep -oE '[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+')
Expand All @@ -25,6 +25,8 @@ jobs:
export oldPatch=$(echo $oldVersion | grep -oE "[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+" | grep -oE '\.[0-9]+\.[0-9]+' | grep -oE '[0-9]+$')
export oldTweak=$(echo $oldVersion | grep -oE "[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+" | grep -oE '[0-9]+$')
echo "Ver $oldVersion"
curl -s https://api.github.com/repos/deskflow/deskflow/releases/latest | awk -F\" '/browser_download_url/{print $(NF-1)}' | grep sums | wget -q -i -
export newVersion=$(cat sums.txt | grep Build: | sed -e 's/Build: //g')
Expand All @@ -33,14 +35,16 @@ jobs:
export newPatch=$(echo $newVersion | grep -oE "[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+" | grep -oE '\.[0-9]+\.[0-9]+' | grep -oE '[0-9]+$')
export newTweak=$(echo $newVersion | grep -oE "[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+" | grep -oE '[0-9]+$')
echo "Ver $newVersion"
# These will be written into the files
export A_SHA=$(cat sums.txt | grep macos-arm64.dmg | sed -e 's/des.*//g' | sed -e 's/ //g')
export I_SHA=$(cat sums.txt | grep macos-x86_64.dmg | sed -e 's/des.*//g' | sed -e 's/ //g')
if [[ "$oldVersion" == "$newVersion" ]]; then
echo " Same Version"
exit 0
elif [[ "$oldMajor" -gt "$newMajor" ]]; then
elif [ "$oldMajor" -gt "$newMajor" ]; then
echo " major version is not newer"
exit 0
elif [ "$oldMajor" -eq "$newMajor" ] && [ "$oldMinor" -gt "$newMinor" ]; then
Expand Down

0 comments on commit ef5b3ad

Please sign in to comment.