Skip to content

Commit 5ed4adb

Browse files
committed
don't arbitrarily ignore errors
1 parent 1c6837a commit 5ed4adb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/run-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ jobs:
2828
run: |
2929
git config user.name 'github-actions'
3030
git config user.email '41898282+github-actions[bot]@users.noreply.github.com'
31-
git tag --delete latest || true
32-
git push --delete origin latest || true
31+
git tag --delete latest
32+
git push --delete origin latest
3333
git tag latest "${{ github.event.pull_request.head.ref }}"
3434
git push origin refs/tags/latest
3535

0 commit comments

Comments
 (0)