Skip to content

Commit a084ea1

Browse files
ljunkieCopilot
andauthored
Update .github/workflows/xelp_shadow_release.yml
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 4eacd21 commit a084ea1

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/xelp_shadow_release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ jobs:
6060
6161
- name: Commit and Push
6262
run: |
63-
git checkout -b xelp/dist
64-
git add -f dist/ package.json package-lock.json
65-
git commit -m "Release shadow version ${{ steps.version.outputs.shadow_version }}"
66-
git tag "v${{ steps.version.outputs.shadow_version }}"
67-
git push origin xelp/dist --force
68-
git push origin "v${{ steps.version.outputs.shadow_version }}"
63+
git checkout -b xelp/dist || exit 1
64+
git add -f dist/ package.json package-lock.json || exit 1
65+
git commit -m "Release shadow version ${{ steps.version.outputs.shadow_version }}" || exit 1
66+
git tag "v${{ steps.version.outputs.shadow_version }}" || exit 1
67+
git push origin xelp/dist --force || exit 1
68+
git push origin "v${{ steps.version.outputs.shadow_version }}" || exit 1

0 commit comments

Comments
 (0)