Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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