name: GitHub Release on: workflow_call: jobs: create-release: runs-on: ubuntu-latest permissions: contents: write steps: - uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v4 with: python-version: '3.x' - name: Install PlatformIO run: | python -m pip install --upgrade pip pip install --upgrade platformio esptool - name: Install xxd run: | sudo apt-get update sudo apt-get install xxd - name: Build Firmware run: | pio run -e esp32dev -t buildfs # Build SPIFFS pio run -e esp32dev # Build firmware cp .pio/build/esp32dev/firmware.bin .pio/build/esp32dev/filaman.bin cp .pio/build/esp32dev/spiffs.bin .pio/build/esp32dev/filaman_spiffs.bin - name: Prepare binaries run: | cd .pio/build/esp32dev # Create OTA binary (already has correct magic byte) cp firmware.bin filaman.bin # Create a magic byte prepended binary for the bootloader echo -ne '\xE9' > bootloader_with_magic.bin cat bootloader.bin >> bootloader_with_magic.bin echo "Creating full binary with magic byte..." esptool.py --chip esp32 merge_bin \ --fill-flash-size 4MB \ --flash_mode dio \ --flash_freq 40m \ --flash_size 4MB \ -o filaman.bin \ 0x0000 bootloader_with_magic.bin \ 0x8000 partitions.bin \ 0x10000 firmware.bin \ 0x390000 spiffs.bin # Verify magic bytes echo "Checking magic bytes:" echo "Full binary first bytes:" xxd -l 16 filaman.bin # Verify file sizes echo "File sizes:" ls -lh *.bin - name: Get version from tag id: get_version run: | echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT - name: Read CHANGELOG.md id: changelog run: | VERSION=${{ steps.get_version.outputs.VERSION }} CHANGELOG=$(awk "/## \\[$VERSION\\]/{p=1;print;next} /## \\[/{p=0} p" CHANGELOG.md) echo "CHANGES<> $GITHUB_OUTPUT echo "$CHANGELOG" >> $GITHUB_OUTPUT echo "EOF" >> $GITHUB_OUTPUT - name: Create GitHub Release env: GH_TOKEN: ${{ github.token }} run: | gh release create "${{ github.ref_name }}" \ --title "Release ${{ steps.get_version.outputs.VERSION }}" \ --notes "${{ steps.changelog.outputs.CHANGES }}" \ .pio/build/esp32dev/filaman.bin