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 name for macOS tasks to rename and upload binary files #6856

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build_native_runtime.yml
Expand Up @@ -65,7 +65,7 @@ jobs:
run: |
mv build/libnativeruntime.so build/librobolectric-nativeruntime-linux-x86_64.so

- name: Rename libnativeruntime for Linux
- name: Rename libnativeruntime for macOS
if: runner.os == 'macOS'
run: |
mv build/libnativeruntime.dylib build/librobolectric-nativeruntime-mac-x86_64.dylib
Expand All @@ -79,7 +79,7 @@ jobs:
build/librobolectric-nativeruntime-linux-x86_64.so
build/*.dylib

- name: Upload libnativeruntime for Linux
- name: Upload libnativeruntime for macOS
if: runner.os == 'macOS'
uses: actions/upload-artifact@v2
with:
Expand Down