testing release from fw build
This commit is contained in:
parent
6e0dd674ea
commit
40487ddcbc
|
@ -11,8 +11,13 @@ on:
|
|||
type: boolean
|
||||
bundle:
|
||||
description: 'Make full firmware bundle'
|
||||
returned: false
|
||||
required: false
|
||||
type: boolean
|
||||
release-name:
|
||||
description: 'Release Name'
|
||||
required: false
|
||||
type: string
|
||||
|
||||
|
||||
jobs:
|
||||
build-firmware:
|
||||
|
@ -318,3 +323,15 @@ jobs:
|
|||
# with:
|
||||
# name: fome_bundle_${{matrix.build-target}}_autoupdate.zip
|
||||
# path: ./artifacts/fome_bundle_${{matrix.build-target}}_autoupdate.zip
|
||||
|
||||
create-release:
|
||||
if: ${{ inputs.release-name != '' }}
|
||||
runs-on: ubuntu-latest-selfhost
|
||||
|
||||
steps:
|
||||
- uses: actions/download-artifact@v3
|
||||
with:
|
||||
path: release-artifacts
|
||||
|
||||
- name: list artifacts
|
||||
run: ls -R release-artifacts
|
||||
|
|
Loading…
Reference in New Issue