File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 67
67
- name : Upload digest
68
68
uses : actions/upload-artifact@v4
69
69
with :
70
- name : digests${{ inputs.artifact_name }}
70
+ name : digests- ${{ inputs.artifact_name }}-${{ strategy.job-index }}
71
71
path : /tmp/digests/*
72
72
if-no-files-found : error
73
73
retention-days : 1
@@ -77,10 +77,15 @@ jobs:
77
77
needs :
78
78
- build
79
79
steps :
80
- - name : Download digests
80
+ - name : Download digest 0
81
81
uses : actions/download-artifact@v4
82
82
with :
83
- name : digests${{ inputs.artifact_name }}
83
+ name : digests-${{ inputs.artifact_name }}-0
84
+ path : /tmp/digests
85
+ - name : Download digest 1
86
+ uses : actions/download-artifact@v4
87
+ with :
88
+ name : digests-${{ inputs.artifact_name }}-1
84
89
path : /tmp/digests
85
90
- name : Set up Docker Buildx
86
91
uses : docker/setup-buildx-action@v3
Original file line number Diff line number Diff line change 1
1
# Run from the root of the project
2
2
3
3
# Use the rust image as the base image for the build stage
4
- FROM rust:latest AS base
4
+ FROM rust:1.85.0 AS base
5
+
5
6
# buildkit will provide this automatically, no need to pass it in
6
7
ARG TARGETARCH
7
8
You can’t perform that action at this time.
0 commit comments