We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0b74ff commit a7f4d37Copy full SHA for a7f4d37
.github/workflows/prod.yml
@@ -37,4 +37,15 @@ jobs:
37
run: cargo clippy --release --features arkworks
38
#- name: Format check (verbose)
39
# run: cargo fmt -- --check --verbose $(find . -name '*.rs' -not -path './src/protobuf/*')
40
-
+
41
+ # New steps for Docker build
42
+ - name: Set up Docker Buildx
43
+ uses: docker/setup-buildx-action@v1
44
+ - name: Build Docker image
45
+ uses: docker/build-push-action@v2
46
+ with:
47
+ context: .
48
+ push: false
49
+ tags: drand:latest
50
+ cache-from: type=gha
51
+ cache-to: type=gha,mode=max
0 commit comments