Compare commits
1 Commits
v1.9.7
...
456b4f0b9a
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
456b4f0b9a |
@@ -20,6 +20,7 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: Build Firmware
|
name: Build Firmware
|
||||||
|
needs: [cppcheck, flawfinder, gitleaks, shellcheck]
|
||||||
runs-on: anvil
|
runs-on: anvil
|
||||||
container:
|
container:
|
||||||
image: docker.io/espressif/idf:v5.3
|
image: docker.io/espressif/idf:v5.3
|
||||||
@@ -71,7 +72,11 @@ jobs:
|
|||||||
# Run directly on host (no container) to access local network
|
# Run directly on host (no container) to access local network
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
run: git clone --depth=1 --branch=${{ github.ref_name }} https://oauth2:${{ github.token }}@git.mymx.me/${{ github.repository }}.git workspace
|
run: |
|
||||||
|
mkdir -p workspace
|
||||||
|
curl -sL -H "Authorization: token ${{ github.token }}" \
|
||||||
|
"https://git.mymx.me/api/v1/repos/${{ github.repository }}/archive/${{ github.ref_name }}.tar.gz" \
|
||||||
|
| tar -xz --strip-components=1 -C workspace
|
||||||
|
|
||||||
- name: Build firmware
|
- name: Build firmware
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
Reference in New Issue
Block a user