Skip to content

Commit

Permalink
ci(brick): debug release action
Browse files Browse the repository at this point in the history
  • Loading branch information
esteinig committed Feb 10, 2024
1 parent a34385c commit 450722b
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,20 @@ jobs:
NEW_BRANCH="pr-release-${{ steps.release.outputs.version }}"
git checkout -b $NEW_BRANCH
- name: Add and commit changes to branch
- name: Check for changes
run: |
git add .
git status
git commit -m "chore(release): update changelog and version for ${{ steps.release.outputs.version }}"
git add CHANGELOG.md
git status
- name: Commit changes
run: |
git diff --quiet || git commit -m "chore(release): update changelog and version for ${{ steps.release.outputs.version }}"
- name: Push changes
run: |
git push origin "pr-release-${{ steps.release.outputs.version }}"
- name: Create Pull Request
uses: peter-evans/create-pull-request@v5
Expand Down

0 comments on commit 450722b

Please sign in to comment.