diff --git a/.github/workflows/workflow.yaml b/.github/workflows/workflow.yaml index a11a4a088..2fb80561f 100644 --- a/.github/workflows/workflow.yaml +++ b/.github/workflows/workflow.yaml @@ -95,6 +95,7 @@ jobs: output/${{ needs.refs.outputs.version }}/${{ matrix.platform }}_${{ needs.refs.outputs.version }}.img output/${{ needs.refs.outputs.version }}/${{ matrix.platform }}_${{ needs.refs.outputs.version }}.bin output/${{ needs.refs.outputs.version }}/${{ matrix.platform }}_${{ needs.refs.outputs.version }}.fls + output/${{ needs.refs.outputs.version }}/${{ matrix.platform }}_${{ needs.refs.outputs.version }}_ota.img if-no-files-found: warn release: diff --git a/.releaserc.yaml b/.releaserc.yaml index 35a9d4718..c67671d9c 100644 --- a/.releaserc.yaml +++ b/.releaserc.yaml @@ -78,7 +78,7 @@ publish: - path: "output/**/*.rbl" - path: "output/**/*.img" - path: "output/**/OpenBL602*.bin" - - path: "output/**/OpenW800*.fls" + - path: "output/**/OpenW800*" success: - "@semantic-release/github" diff --git a/Makefile b/Makefile index 3c8a944ec..24cb0844a 100644 --- a/Makefile +++ b/Makefile @@ -101,6 +101,7 @@ OpenW800: sdk/OpenW800/tools/w800/csky/bin sdk/OpenW800/sharedAppContainer/share $(MAKE) -C sdk/OpenW800 EXTRA_CCFLAGS=-DPLATFORM_W800 CONFIG_W800_USE_LIB=n CONFIG_W800_TOOLCHAIN_PATH="$(shell realpath sdk/OpenW800/tools/w800/csky/bin)/" mkdir -p output/$(APP_VERSION) cp sdk/OpenW800/bin/w800/w800.fls output/$(APP_VERSION)/OpenW800_$(APP_VERSION).fls + cp sdk/OpenW800/bin/w800/w800_ota.img output/$(APP_VERSION)/OpenW800_$(APP_VERSION)_ota.img # clean .o files and output directory .PHONY: clean