Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/docker_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,3 +107,21 @@ jobs:
UI_RELEASE=${{ steps.manifest.outputs.UI_RELEASE }}
BUILD_VERSION=${{ steps.build_tag_generator.outputs.RELEASE_TAG }}
GIT_REF=${{ github.ref }}

- name: Ensure manifest.json exists
run: |
if [ ! -f manifest.json ]; then
echo "manifest.json not found in repo root - generating via manifestgen.sh"
./manifestgen.sh || true
fi

- name: Upload manifest.json to GitHub Release
if: github.event_name == 'release'
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ./manifest.json
asset_name: manifest.json
asset_content_type: application/json