Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/actions/prepare-distribution/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ runs:
--version "${{ inputs.version-name }}" \
--target "macos-x64"

- name: Package distribution (macOS-arm64)
- name: Package distribution (macOS-ARM64)
shell: bash
run: |
python3 ./.github/workflows/scripts/package-distribution.py \
--input package-macOS-arm64/ \
--input package-macOS-ARM64/ \
--dest package/ \
--version "${{ inputs.version-name }}" \
--target "macos-arm64"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -525,11 +525,11 @@ jobs:
name: mithril-distribution-macOS-X64
path: ./package-macOS-X64

- name: Download built artifacts (macOS-arm64)
- name: Download built artifacts (macOS-ARM64)
uses: actions/download-artifact@v4
with:
name: mithril-distribution-macOS-arm64
path: ./package-macOS-arm64
name: mithril-distribution-macOS-ARM64
path: ./package-macOS-ARM64

- name: Download built artifacts (Windows-X64)
uses: actions/download-artifact@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ jobs:
workflow: ci.yml
workflow_conclusion: success

- name: Download built artifacts (macOS-arm64)
- name: Download built artifacts (macOS-ARM64)
uses: dawidd6/action-download-artifact@v3
with:
name: mithril-distribution-macOS-arm64
path: ./package-macOS-arm64
name: mithril-distribution-macOS-ARM64
path: ./package-macOS-ARM64
commit: ${{ github.sha }}
workflow: ci.yml
workflow_conclusion: success
Expand Down