Initial content commit

This commit is contained in:
Ken Van Hoeylandt
2025-09-23 21:33:04 +02:00
parent 5a89c6c7fb
commit 755c6407d3
38 changed files with 4289 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
name: Build
inputs:
app_name:
description: The name of the app directory
required: true
runs:
using: "composite"
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: 'Build'
uses: espressif/esp-idf-ci-action@v1
with:
esp_idf_version: v5.5
path: './Apps/${{ app_name }}'
command: 'tactility.py build'
- name: 'Upload Artifact'
uses: actions/upload-artifact@v4
with:
name: ${{ app_name }}
path: 'Apps/${{ app_name}}/build/${{ app_name }}.app'
retention-days: 30