Skip to content

Commit

Permalink
merge artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
YoshitakaMo committed Feb 29, 2024
1 parent a8b91f9 commit b5142a5
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/build-bottles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,17 @@ jobs:
- name: Upload bottles as artifact
if: always() && github.event_name == 'pull_request'
uses: actions/upload-artifact@main
uses: actions/upload-artifact@v4
with:
name: bottles-${{ runner.os }}
path: '*.bottle.*'

merge:
runs-on: ubuntu-latest
needs: build-bottles
steps:
- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4
with:
name: all-my-files
pattern: my-artifact-*

0 comments on commit b5142a5

Please sign in to comment.