Workflow fix
This commit is contained in:
parent
7050ba7683
commit
252f709c49
3 changed files with 12 additions and 9 deletions
|
@ -1,12 +1,9 @@
|
||||||
name: "Checkout, install and build"
|
name: "Install and build"
|
||||||
description: "Checkout, install and build"
|
description: "Install and build"
|
||||||
|
|
||||||
runs:
|
runs:
|
||||||
using: "composite"
|
using: "composite"
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
submodules: recursive
|
|
||||||
- uses: actions/setup-node@v4
|
- uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: lts/*
|
node-version: lts/*
|
7
.github/workflows/pull_request.yml
vendored
7
.github/workflows/pull_request.yml
vendored
|
@ -12,5 +12,8 @@ jobs:
|
||||||
contents: write
|
contents: write
|
||||||
checks: write
|
checks: write
|
||||||
steps:
|
steps:
|
||||||
- name: "Checkout, install and build"
|
- uses: actions/checkout@v4
|
||||||
uses: ./.github/actions/checkout-install-build
|
with:
|
||||||
|
submodules: recursive
|
||||||
|
- name: "Install and build"
|
||||||
|
uses: ./.github/actions/install-build
|
7
.github/workflows/tagging.yml
vendored
7
.github/workflows/tagging.yml
vendored
|
@ -12,8 +12,11 @@ jobs:
|
||||||
contents: write
|
contents: write
|
||||||
checks: write
|
checks: write
|
||||||
steps:
|
steps:
|
||||||
- name: "Checkout, install and build"
|
- uses: actions/checkout@v4
|
||||||
uses: ./.github/actions/checkout-install-build
|
with:
|
||||||
|
submodules: recursive
|
||||||
|
- name: "Install and build"
|
||||||
|
uses: ./.github/actions/install-build
|
||||||
|
|
||||||
- name: Install esptools.py
|
- name: Install esptools.py
|
||||||
run: pip install --upgrade esptool
|
run: pip install --upgrade esptool
|
||||||
|
|
Loading…
Reference in a new issue