Skip to content

Commit

Permalink
fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
yogh333 committed Jan 25, 2024
1 parent 2234888 commit b53831b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build_all_apps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@ jobs:
run: |
cargo +$RUST_STABLE install toml-cli
cd ${{ matrix.repo_name }}
build_path = $(toml get ledger_app.toml app.build_directory)
build_path=$(toml get ledger_app.toml app.build_directory)
echo "build_path=$build_path" >> $GITHUB_ENV
build_nanos = $(toml get ledger_app.toml app.devices | grep -o "\"nanos\"" | awk -F '"' '{print $2}')
build_nanos=$(toml get ledger_app.toml app.devices | grep -o "\"nanos\"" | awk -F '"' '{print $2}')
echo "Build Nano S => $build_nanos"
build_nanosplus = $(toml get ledger_app.toml app.devices | grep -o "\"nanos+\"" | awk -F '"' '{print $2}' | sed 's/+/plus/')
build_nanosplus=$(toml get ledger_app.toml app.devices | grep -o "\"nanos+\"" | awk -F '"' '{print $2}' | sed 's/+/plus/')
echo "Build Nano S+ => $build_nanosplus"
build_nanox = $(toml get ledger_app.toml app.devices | grep -o "\"nanox\"" | awk -F '"' '{print $2}')
build_nanox=$(toml get ledger_app.toml app.devices | grep -o "\"nanox\"" | awk -F '"' '{print $2}')
echo "Build Nano X => $build_nanox"
echo "build_nanos=$build_nanos" >> $GITHUB_ENV
echo "build_nanosplus=$build_nanosplus" >> $GITHUB_ENV
Expand Down

0 comments on commit b53831b

Please sign in to comment.