Files
tactility_apps/.github/actions/release-apps/action.yml
T
Ken Van Hoeylandt 722cdc8a1a Add release workflow (#11)
Merging to test if that enables it
2025-10-17 22:03:00 +02:00

26 lines
668 B
YAML

name: Release Apps
runs:
using: "composite"
steps:
- name: 'Build'
uses: espressif/esp-idf-ci-action@v1
with:
esp_idf_version: v5.5
path: ./Apps/${{ inputs.app_name }}
command: 'python tactility.py build'
- name: Download app artifacts
uses: actions/download-artifact@v3
with:
path: downloaded_apps
- name: Place reports' artifacts
run: rsync -av downloaded_apps/*/*/ release_apps/
- name: 'Upload Artifact'
uses: actions/upload-artifact@v4
with:
name: "apps"
path: release_apps/
retention-days: 30
- name: Output
run: ls -R release_apps/