Skip to content

Update for new worlflow #77

Update for new worlflow

Update for new worlflow #77

Workflow file for this run

name: Create Board Firmware
on:
schedule:
- cron: '10 17 * * *' # build fresh every 5:10 PM
push:
pull_request:
workflow_dispatch:
jobs:
read-meta-info:
runs-on: ubuntu-latest
outputs:
short_board_name: ${{ steps.read_meta.outputs.SHORT_BOARD_NAME }}
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Read meta-info file with the board description
id: read_meta
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
run: |
echo "$(cat ./meta-info.env)" >> $GITHUB_OUTPUT
- name: Debug output of the board name
run: |
echo "SHORT_BOARD_NAME = ${{ steps.read_meta.outputs.SHORT_BOARD_NAME }}"
call-workflow-passing-data:
needs: read-meta-info
uses: rusefi/rusefi/.github/workflows/custom-board-build.yaml@master
secrets: inherit
permissions:
contents: write
with:
shortBoardName: ${{ needs.read-meta-info.outputs.SHORT_BOARD_NAME }}

Check failure on line 37 in .github/workflows/build-firmware.yaml

View workflow run for this annotation

GitHub Actions / Create Board Firmware

Invalid workflow file

The workflow is not valid. .github/workflows/build-firmware.yaml (Line: 37, Col: 23): Invalid input, shortBoardName is not defined in the referenced workflow. .github/workflows/build-firmware.yaml (Line: 39, Col: 27): Invalid input, relative_board_dir is not defined in the referenced workflow.
rusefi_dir: ext/rusefi
relative_board_dir: ../..