Skip to content
Closed
19 changes: 17 additions & 2 deletions .github/workflows/build_one_target.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,22 @@ on:
# default: true
# description: 'Find the available targets'

permissions: read-all
permissions:
actions: read
attestations: read
checks: write
contents: write
deployments: read
id-token: write
issues: read
models: read
discussions: read
packages: write
pages: read
pull-requests: read
security-events: read
statuses: read
repository-projects: read

jobs:
find-targets:
Expand Down Expand Up @@ -60,7 +75,7 @@ jobs:
echo "Arch: ${{matrix.arch}}" >> $GITHUB_STEP_SUMMARY
echo "Ref: $GITHUB_REF" >> $GITHUB_STEP_SUMMARY
echo "Targets:" >> $GITHUB_STEP_SUMMARY
echo $TARGETS >> $GITHUB_STEP_SUMMARY
echo $TARGETS | jq -r '.[] | "- " + .board' >> $GITHUB_STEP_SUMMARY

version:
if: ${{ inputs.target != '' }}
Expand Down
Loading