Skip to content

Commit

Permalink
Fix Release worklfow with upload-artefact breaking changes
Browse files Browse the repository at this point in the history
  • Loading branch information
vasireddy99 committed Jan 3, 2025
1 parent dbec93b commit 2dbee17
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
if: ${{ success() }}
uses: actions/upload-artifact@v4
with:
name: ${{ env.LAYER_NAME }}
name: ${{ env.LAYER_NAME }}-${{matrix.architecture}}-${{matrix.aws_region}}
path: ${{ env.LAYER_NAME }}/${{ matrix.aws_region }}
- name: clean s3
if: always()
Expand All @@ -128,8 +128,9 @@ jobs:
- name: download layerARNs
uses: actions/download-artifact@v4
with:
name: ${{ env.LAYER_NAME }}
pattern: ${{ env.LAYER_NAME }}-*
path: ${{ env.LAYER_NAME }}
merge-multiple: true
- name: show layerARNs
run: |
for file in ${{ env.LAYER_NAME }}/*
Expand Down

0 comments on commit 2dbee17

Please sign in to comment.