Skip to content

Commit 6dfcb56

Browse files
committed
Merge branch 'ci/cron_optimization'
2 parents 51de3df + 8d7a966 commit 6dfcb56

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/cron.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -129,14 +129,14 @@ jobs:
129129
if: failure() && (env.libs_has_commit == '0' || env.ar_has_commit == '0')
130130
uses: actions/upload-artifact@v4
131131
with:
132-
name: build-${{ steps.artifact_id.outputs.artifact_id }}
132+
name: build-${{ env.artifact_id }}
133133
path: build
134134

135135
- name: Upload library files
136136
#if: env.libs_has_commit == '0' || env.ar_has_commit == '0'
137137
uses: actions/upload-artifact@v4
138138
with:
139-
name: libs-${{ steps.artifact_id.outputs.artifact_id }}
139+
name: libs-${{ env.artifact_id }}
140140
path: dist
141141

142142
combine-artifacts:
@@ -172,7 +172,7 @@ jobs:
172172
uses: actions/download-artifact@v4
173173
with:
174174
path: dist
175-
pattern: libs-${{ steps.artifact_id.outputs.artifact_id }}-*
175+
pattern: libs-${{ env.artifact_id }}-*
176176
merge-multiple: true
177177

178178
- name: Combine artifacts

0 commit comments

Comments
 (0)