diff options
author | Christian Breunig <christian@breunig.cc> | 2025-01-04 12:21:13 +0100 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2025-01-04 12:23:40 +0100 |
commit | 9a046d9c2276f33f134c530325206ac241c00b88 (patch) | |
tree | 1d7552fc7d4c4a456d3b7504c29d2077f192390e /.github/workflows | |
parent | bb4611544ff73a979f927a7a1c8ea3dd1c56fb48 (diff) | |
download | vyos-1x-9a046d9c2276f33f134c530325206ac241c00b88.tar.gz vyos-1x-9a046d9c2276f33f134c530325206ac241c00b88.zip |
GitHub: T7007: add build/manifest.json to build artifacts
Integrated per PR smoketests require the build/manifest.json file to retrieve
additional information to be validated inside the runnning image under test.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/package-smoketest.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/package-smoketest.yml b/.github/workflows/package-smoketest.yml index d352bd3cb..ae34ea2f0 100644 --- a/.github/workflows/package-smoketest.yml +++ b/.github/workflows/package-smoketest.yml @@ -64,7 +64,9 @@ jobs: - uses: actions/upload-artifact@v4 with: name: vyos-${{ steps.version.outputs.build_version }} - path: build/live-image-amd64.hybrid.iso + path: | + build/live-image-amd64.hybrid.iso + build/manifest.json test_smoketest_cli: needs: build_iso |