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

[DO-000] use specific artifact name to download it #370

Merged
merged 8 commits into from
Feb 10, 2025
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
10 changes: 8 additions & 2 deletions .github/workflows/release-kotlin-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,15 @@ jobs:
steps:
- uses: RDXWorks-actions/checkout@main

- uses: RDXWorks-actions/download-artifact@main
- uses: RDXWorks-actions/download-artifact-v4@main
with:
path: artifacts
name: aarch64-apple-darwin
path: artifacts/aarch64-apple-darwin

- uses: RDXWorks-actions/download-artifact-v4@main
with:
name: x86_64-unknown-linux-gnu
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should this really be x86_64-unknown-linux-gnu but the one above is aarch64-apple-darwin ? looks wrong with the assymetry?

path: artifacts/x86_64-unknown-linux-gnu

- name: Set up JDK 17
uses: RDXWorks-actions/setup-java@v3
Expand Down
Loading
Loading