Skip to content

Commit

Permalink
Merge pull request #852 from bettio/fix-pico-workflow
Browse files Browse the repository at this point in the history
Fix pico-build workflow

Use ${{ ... }} for expressions and single quotes.

These changes are made under both the "Apache 2.0" and the "GNU Lesser General
Public License 2.1 or later" license terms (dual license).

SPDX-License-Identifier: Apache-2.0 OR LGPL-2.1-or-later
  • Loading branch information
bettio committed Oct 7, 2023
2 parents 7eda78e + 2bb9695 commit 0f078b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pico-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
shell: bash
working-directory: ./src/platforms/rp2040/tests
# Unfortunately, rp2040js doesn't support cyw43 and cyw43_arch_init panics
if: success() && matrix.board != "pico_w"
if: ${{ success() && matrix.board != 'pico_w' }}
run: |
set -euo pipefail
source $HOME/.nvm/nvm.sh
Expand Down

0 comments on commit 0f078b0

Please sign in to comment.