Add access token to NuttX Github Action

This is necessary for downstream adopters. We want them to run these actions as well so that contributions are already pre-tested.
This commit is contained in:
Lorenz Meier 2019-12-26 12:57:58 +01:00 committed by GitHub
parent 993938c0b1
commit 77951c1e07
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -22,5 +22,8 @@ jobs:
] ]
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
with:
token: ${{ secrets.ACCESS_TOKEN }}
submodules: true
- name: make ${{ matrix.config }} - name: make ${{ matrix.config }}
run: make ${{ matrix.config }} run: make ${{ matrix.config }}