Skip to content

Commit

Permalink
✨ Update release workflow to use tagging for versioning and streamlin…
Browse files Browse the repository at this point in the history
…e Git operations
  • Loading branch information
grelinfo committed Nov 26, 2024
1 parent 02c4374 commit 470eb9a
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
git add .
git commit -m "🚀 Release $RELEASE_VERSION"
git push origin
git tag -f $RELEASE_VERSION
git push origin main
publish-docs:
Expand All @@ -46,18 +46,15 @@ jobs:
fetch-depth: 0
ref: ${{ github.ref_name }}

- name: Install uv
uses: astral-sh/setup-uv@v3
with:
enable-cache: true

- name: Configure Git Credentials
run: |
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
enable-cache: true

- name: Install dependencies
run: uv sync --group docs
Expand Down

0 comments on commit 470eb9a

Please sign in to comment.