-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Run CI on PRs #146
Run CI on PRs #146
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
This could avoid tagging if not going to release. Will not solve if we want a diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 1ecd6e2..5311aa1 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -98,6 +98,7 @@ jobs:
jq -r '"image=\(.image)"' >> "$GITHUB_OUTPUT"
- name: Create tags for Cartesi Node image
+ if: startsWith(github.ref, 'refs/tags/v')
env:
METADATA_JSON: ${{ steps.extract_metadata.outputs.json }}
CARTESI_NODE_IMAGE: ${{ steps.build_node.outputs.image }} |
Might be nice to have those, so that people can test stuff out without having to build locally from scratch. |
Now, we'll also push images for PRs. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remember to sync with next
branch so we can try this on PRs targeting next
.
No description provided.