We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f67a468 commit d87e44fCopy full SHA for d87e44f
1 file changed
.github/workflows/docker_release.yml
@@ -107,3 +107,21 @@ jobs:
107
UI_RELEASE=${{ steps.manifest.outputs.UI_RELEASE }}
108
BUILD_VERSION=${{ steps.build_tag_generator.outputs.RELEASE_TAG }}
109
GIT_REF=${{ github.ref }}
110
+
111
+ - name: Ensure manifest.json exists
112
+ run: |
113
+ if [ ! -f manifest.json ]; then
114
+ echo "manifest.json not found in repo root - generating via manifestgen.sh"
115
+ ./manifestgen.sh || true
116
+ fi
117
118
+ - name: Upload manifest.json to GitHub Release
119
+ if: github.event_name == 'release'
120
+ uses: actions/upload-release-asset@v1
121
+ env:
122
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
123
+ with:
124
+ upload_url: ${{ github.event.release.upload_url }}
125
+ asset_path: ./manifest.json
126
+ asset_name: manifest.json
127
+ asset_content_type: application/json
0 commit comments