Skip to content

Commit

Permalink
fix(sp1-build, workflows): docker tag (#1636)
Browse files Browse the repository at this point in the history
  • Loading branch information
ratankaliani authored Oct 11, 2024
1 parent db08c62 commit 6512b56
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/docker-publish-gnark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name: docker-gnark

on:
push:
branches:
- "main"
tags:
- "v*.*.*"
schedule:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name: docker

on:
push:
branches:
- "main"
tags:
- "v*.*.*"
schedule:
Expand Down
2 changes: 1 addition & 1 deletion crates/build/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pub use build::execute_build_program;
use clap::Parser;

const BUILD_TARGET: &str = "riscv32im-succinct-zkvm-elf";
const DEFAULT_TAG: &str = "v1.1.0";
const DEFAULT_TAG: &str = "latest";
const DEFAULT_OUTPUT_DIR: &str = "elf";
const HELPER_TARGET_SUBDIR: &str = "elf-compilation";

Expand Down

0 comments on commit 6512b56

Please sign in to comment.