Merge branch 'dev' into drunkbatya/fix-indexer

This commit is contained in:
Max Andreev 2023-05-19 13:58:35 +03:00 committed by GitHub
commit decf530895
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 2 deletions

View File

@ -10,7 +10,7 @@ on:
jobs:
build:
runs-on: ubuntu-22.04
runs-on: [self-hosted,FlipperZeroShell]
steps:
- name: 'Store UID'
id: uid
@ -24,7 +24,11 @@ jobs:
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
submodules: recursive
fetch-depth: 1
- name: 'Checkout submodules'
run:
git submodule update --init --recursive --depth 1 --jobs "$(getconf _NPROCESSORS_ONLN)";
- name: 'Setup python'
uses: actions/setup-python@v4