Skip to content

Commit

Permalink
Update Gmeek.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jkjoy authored Oct 18, 2024
1 parent b83be6f commit f3b71e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/Gmeek.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ jobs:
GMEEK_VERSION=$(jq -r ".GMEEK_VERSION" config.json)
git clone https://github.com/Meekdai/Gmeek.git /opt/Gmeek;
cd /opt/Gmeek/
lastTag=$(git describe --tags `git rev-list --tags --max-count=1`)
if [ $GMEEK_VERSION == 'last' ]; then git checkout $lastTag; else git checkout $GMEEK_VERSION; fi;
lastTag=$(git tag --sort=-creatordate | head -n 1)
if [ "$GMEEK_VERSION" == 'last' ]; then git checkout "$lastTag"; else git checkout "$GMEEK_VERSION"; fi;
- name: Install dependencies
run: |
Expand Down

0 comments on commit f3b71e9

Please sign in to comment.