Skip to content

Commit

Permalink
Fixed pipeline and improved plugin install script
Browse files Browse the repository at this point in the history
  • Loading branch information
erseco committed Oct 20, 2024
1 parent 047c51a commit 1b4fb86
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/check-moodle-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ jobs:
- name: Get Current Version from Git Tags
id: get_current_version
run: |
CURRENT_VERSION=$(git tag | sort -V | tail -n 1)
# Get the latest stable tag (no pre-release)
CURRENT_VERSION=$(git tag | grep -vE '(-rc|-beta|-alpha)' | sort -V | tail -n 1)
echo "CURRENT_VERSION=$CURRENT_VERSION" >> $GITHUB_ENV
- name: Compare Versions
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
/Persistent
.data
.DS_Store
.aider*

0 comments on commit 1b4fb86

Please sign in to comment.