Skip to content

Commit

Permalink
Fix target name (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
eliabieri authored Aug 18, 2023
1 parent 1bc1e85 commit 33ccb3f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ jobs:
run: make app_aarch64
- name: Rename artifacts
run: |
mv app/target/aarch64-unknown-linux-gnueabihf/release/app wg-display-aarch64-unknown-linux-gnueabihf
mv app/target/aarch64-unknown-linux-gnu/release/app wg-display-aarch64-unknown-linux-gnu
- uses: ncipollo/release-action@v1
with:
artifacts: "wg-display-aarch64-unknown-linux-gnueabihf"
artifacts: "wg-display-aarch64-unknown-linux-gnu"
artifactErrorsFailBuild: true
2 changes: 1 addition & 1 deletion app/src/widgets/store/widget_store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use anyhow::Result;
use common::models::WidgetStoreItem;

const WIDGET_LISTING_URL: &str =
"https://raw.githubusercontent.com/eliabieri/wg_display/feature/wasm_widget_support/widget_store.json";
"https://raw.githubusercontent.com/eliabieri/wg_display/main/widget_store.json";

pub struct WidgetStore {
store_items: Vec<WidgetStoreItem>,
Expand Down
2 changes: 1 addition & 1 deletion install_on_raspberry.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
def get_release_name() -> str:
machine = platform.machine()
if 'armv8' in machine:
return "aarch64-unknown-linux-gnueabihf"
return "aarch64-unknown-linux-gnu"
print(f'Unsupported architecture: {machine}. Only 64-bit capable Raspberry Pi\'s are supported for now.')
sys.exit(1)

Expand Down

0 comments on commit 33ccb3f

Please sign in to comment.