Skip to content

Commit

Permalink
ci: update release workflow for automated releases
Browse files Browse the repository at this point in the history
- Remove draft status from pull request creation
- Remove conditional check for creating GitHub release
- Streamline release process for more efficient automation
  • Loading branch information
EvanNotFound committed Dec 2, 2024
1 parent 949691f commit 369fe9d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,12 @@ jobs:
title: "Release v${{ env.new_version }}"
body: "Automated release PR for version ${{ env.new_version }}"
delete-branch: false
draft: true
draft: false
labels: 'release, automated'
reviewers: 'EvanNotFound'
assignees: 'EvanNotFound'

- name: Create GitHub Release (Draft)
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
uses: ncipollo/release-action@v1
with:
tag: "v${{ env.new_version }}"
Expand Down

0 comments on commit 369fe9d

Please sign in to comment.