Skip to content

Commit 59e72c7

Browse files
authored
Merge pull request #18 from codeboxrcodehub/dev
Version 1.0.9 released
2 parents 3e96d7e + f1b3b04 commit 59e72c7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ jobs:
1515
steps:
1616
- name: Checkout repository
1717
uses: actions/checkout@v2
18+
with:
19+
fetch-depth: 0 # Fetch all history for all tags
1820

1921
- name: Read version from readme.txt
2022
id: read_version
@@ -25,6 +27,7 @@ jobs:
2527
- name: Get latest tag
2628
id: get_latest_tag
2729
run: |
30+
git fetch --tags # Ensure all tags are fetched
2831
LATEST_TAG=$(git tag -l --sort=-v:refname | head -n 1)
2932
if [ -z "$LATEST_TAG" ]; then
3033
echo "No tags found"

0 commit comments

Comments
 (0)