Skip to content

Commit

Permalink
Pulling the whole repo (#1134)
Browse files Browse the repository at this point in the history
  • Loading branch information
iparask authored Mar 5, 2025
1 parent 17baa9c commit f26d8c7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/monthly_releases.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ jobs:
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
fetch-tags: true
fetch-depth: 0

- name: Authenticate GitHub CLI
run: |
Expand All @@ -22,7 +24,9 @@ jobs:
run: |
latest_tag=$(git describe --tags --abbrev=0 || echo "v0.0.0")
version=${latest_tag#v} # Remove 'v' prefix
echo "Latest tag: $latest_tag, latest version: $version"
IFS='.' read -r major minor patch <<< "$version"
new_patch=$((patch + 1))
new_version="v$major.$minor.$new_patch"
echo "New version: $new_version"
gh release create $new_version --generate-notes

0 comments on commit f26d8c7

Please sign in to comment.