Skip to content

Commit

Permalink
ci: use git -C vc push || true in .github/workflows/gen_vc_ci.yml, …
Browse files Browse the repository at this point in the history
…to prevent false positives in forked repos
  • Loading branch information
spytheman committed Nov 27, 2023
1 parent ef59808 commit 19b055c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/gen_vc_ci.yml
Expand Up @@ -46,4 +46,6 @@ jobs:
# in case there are recent commits:
git -C vc pull --rebase origin master
git -C vc push
# Note that failure below may happen, due to vlang/vc rejecting the push
# from forked repos; that is not usually a problem.
git -C vc push || true

0 comments on commit 19b055c

Please sign in to comment.