Skip to content

Commit

Permalink
workflow updated
Browse files Browse the repository at this point in the history
  • Loading branch information
SinaSeylani committed Oct 21, 2024
1 parent 65342f4 commit 3dde752
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
run: |
git checkout -b ${{ needs.determine-next-versions.outputs.branch-patch }}
git push origin ${{ needs.determine-next-versions.outputs.branch-patch }}
create-change-file:
name: Generate Change File
runs-on: ubuntu-latest
Expand All @@ -89,8 +89,11 @@ jobs:
with:
fetch-depth: 0

- name: Fetch full history for Beachball
run: git fetch --unshallow
- name: Fetch full history if shallow
run: |
if [ -f .git/shallow ]; then
git fetch --unshallow
fi
- name: Generate Change File for Major Release
if: ${{ github.event.inputs.release-type == 'major' }}
Expand Down

0 comments on commit 3dde752

Please sign in to comment.