Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix package names in CI workflows #580

Merged
merged 1 commit into from
Nov 3, 2022
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ jobs:
- name: Download Debian packages (Linux-X64)
uses: actions/download-artifact@v3
with:
name: mithril-deb-packages-Linux-x64
name: mithril-deb-packages-Linux-X64
path: ./package

- name: Download built artifacts (macOS-X64)
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Download built artifacts (Linux-x64)
uses: dawidd6/action-download-artifact@v2
with:
name: mithril-distribution-Linux-x64
name: mithril-distribution-Linux-X64
path: ./package-Linux-X64
commit: ${{ github.sha }}
workflow: ci.yml
Expand All @@ -28,7 +28,7 @@ jobs:
- name: Download Debian packages (Linux-X64)
uses: dawidd6/action-download-artifact@v2
with:
name: mithril-deb-packages-Linux-x64
name: mithril-deb-packages-Linux-X64
path: ./package
commit: ${{ github.sha }}
workflow: ci.yml
Expand All @@ -37,7 +37,7 @@ jobs:
- name: Download built artifacts (macOS-x64)
uses: dawidd6/action-download-artifact@v2
with:
name: mithril-distribution-macOS-x64
name: mithril-distribution-macOS-X64
path: ./package-macOS-X64
commit: ${{ github.sha }}
workflow: ci.yml
Expand All @@ -46,7 +46,7 @@ jobs:
- name: Download built artifacts (Windows-x64)
uses: dawidd6/action-download-artifact@v2
with:
name: mithril-distribution-Windows-x64
name: mithril-distribution-Windows-X64
path: ./package-Windows-X64
commit: ${{ github.sha }}
workflow: ci.yml
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
- name: Download built artifacts (Linux-x64)
uses: dawidd6/action-download-artifact@v2
with:
name: mithril-distribution-Linux-x64
name: mithril-distribution-Linux-X64
path: ${{ matrix.project }}
commit: ${{ github.sha }}
workflow: ci.yml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Download built artifacts (Linux-x64)
uses: dawidd6/action-download-artifact@v2
with:
name: mithril-distribution-Linux-x64
name: mithril-distribution-Linux-X64
path: ${{ matrix.project }}
commit: ${{ github.sha }}
workflow: ci.yml
Expand Down