Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 8 additions & 10 deletions .github/workflows/call-build-macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
- name: Upload build packages
uses: actions/upload-artifact@v7
with:
name: macos-packages on ${{ matrix.config.runner }}
name: macos-packages-${{ matrix.config.runner }}
path: |
build/fluent-bit-*-apple*
build/fluent-bit-*-intel*
Expand All @@ -124,26 +124,24 @@ jobs:
- call-build-macos-package
permissions:
contents: read
strategy:
fail-fast: false
matrix:
config:
- name: "Apple Silicon macOS package"
os: macos-14

steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
ref: ${{ inputs.ref }}

- name: Download all artefacts
continue-on-error: true
uses: actions/download-artifact@v8
with:
name: macos-packages on ${{ matrix.config.os }}
pattern: macos-packages-*
merge-multiple: true
path: artifacts/

- name: Validate downloaded artifacts
run: |
ls -lR artifacts/
shell: bash
Comment thread
cosmo0920 marked this conversation as resolved.

- name: Push MacOS packages to S3
if: inputs.environment == 'staging'
uses: ./.github/actions/sync-to-bucket
Expand Down
Loading