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 6767 - name : Upload digest
6868 uses : actions/upload-artifact@v4
6969 with :
70- name : digests${{ inputs.artifact_name }}
70+ name : digests- ${{ inputs.artifact_name }}-${{ strategy.job-index }}
7171 path : /tmp/digests/*
7272 if-no-files-found : error
7373 retention-days : 1
@@ -77,10 +77,15 @@ jobs:
7777 needs :
7878 - build
7979 steps :
80- - name : Download digests
80+ - name : Download digest 0
8181 uses : actions/download-artifact@v4
8282 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
8489 path : /tmp/digests
8590 - name : Set up Docker Buildx
8691 uses : docker/setup-buildx-action@v3
Original file line number Diff line number Diff line change 11# Run from the root of the project
22
33# 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+
56# buildkit will provide this automatically, no need to pass it in
67ARG TARGETARCH
78
You can’t perform that action at this time.
0 commit comments