Skip to content

Fix GitHub release #652

Fix GitHub release

Fix GitHub release #652

Workflow file for this run

name: CI Build
on:
push:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- environment: mk4-release
ud_gen: MK4
ud_debug: 0
target: esp32s2
- environment: mk5-release
ud_gen: MK5
ud_debug: 0
target: esp32s3
- environment: mk6-release
ud_gen: MK6
ud_debug: 0
target: esp32s3
- environment: mk7-release
ud_gen: MK7
ud_debug: 0
target: esp32s3
- environment: mk7-debug
ud_gen: MK7
ud_debug: 1
target: esp32s3
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: "recursive"
- name: esp-idf build
uses: espressif/esp-idf-ci-action@v1
with:
esp_idf_version: v5.3.1
target: ${{ matrix.target }}
command: idf.py build -DUD_GEN=${{ matrix.ud_gen }} -DUD_DEBUG=${{ matrix.ud_debug }}
- name: Rename firmware artifact
run: |
cp build/ugly-duckling.bin ugly-duckling-${{ matrix.environment }}.bin
- name: Create debug artifact
run: |
zip debug-${{ matrix.environment }}.zip \
build/project_description.json \
build/*.bin \
build/*.elf \
build/*.map \
build/config/sdkconfig.h
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: ugly-duckling-${{ matrix.environment }}
path: |
ugly-duckling-${{ matrix.environment }}.bin
debug-${{ matrix.environment }}.zip
if-no-files-found: error
release:
needs: build
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
- name: Display structure of downloaded files
run: ls -R
- name: Release
uses: AButler/[email protected]
with:
files: ugly-duckling-*/*
repo-token: ${{ secrets.GITHUB_TOKEN }}