Skip to content

Commit

Permalink
fix(ci): Update upload-artifact with merge step
Browse files Browse the repository at this point in the history
  • Loading branch information
caksoylar authored and petejohanson committed Jan 30, 2024
1 parent 5685074 commit 0755b7a
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/build-user-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,19 @@ jobs:
fi
- name: Archive (${{ env.display_name }})
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ inputs.archive_name }}
name: artifact-${{ env.artifact_name }}
path: ${{ env.build_dir }}/artifacts

merge:
runs-on: ubuntu-latest
needs: build
name: Merge Output Artifacts
steps:
- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4
with:
name: ${{ inputs.archive_name }}
pattern: artifact-*
delete-merged: true

0 comments on commit 0755b7a

Please sign in to comment.