Skip to content

Commit 67694e3

Browse files
committed
Add artifact prefix
1 parent 044fcbf commit 67694e3

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/publish-azure-cc-enclave-docker.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,8 @@ jobs:
169169
runs-on: ubuntu-latest
170170
permissions: {}
171171
needs: buildImage
172+
env:
173+
ARTIFACT_PREFIX: azure-cc-
172174
steps:
173175
- name: Checkout
174176
uses: actions/checkout@v4
@@ -192,14 +194,14 @@ jobs:
192194
- name: Upload deployment artifacts
193195
uses: actions/upload-artifact@v4
194196
with:
195-
name: azure-cc-deployment-files-${{ needs.buildImage.outputs.jar_version }}
197+
name: ${{ env.ARTIFACT_PREFIX }}deployment-files-${{ needs.buildImage.outputs.jar_version }}
196198
path: ${{ env.ARTIFACTS_OUTPUT_DIR }}
197199
if-no-files-found: error
198200

199201
- name: Upload manifest
200202
uses: actions/upload-artifact@v4
201203
with:
202-
name: azure-cc-enclave-id-${{ needs.buildImage.outputs.jar_version }}
204+
name: ${{ env.ARTIFACT_PREFIX }}enclave-id-${{ needs.buildImage.outputs.jar_version }}
203205
path: ${{ env.MANIFEST_OUTPUT_DIR }}
204206
if-no-files-found: error
205207

0 commit comments

Comments
 (0)