ci: incorrect path again
Some checks failed
Build, Package and Push Images / preprocess (push) Successful in 2s
Build, Package and Push Images / build (push) Successful in 24s
Build, Package and Push Images / sbom-scan (push) Successful in 34s
Build, Package and Push Images / container-build (push) Successful in 1m34s
Build, Package and Push Images / sonarqube (push) Successful in 1m35s
Build, Package and Push Images / container-sbom-scan (push) Successful in 36s
Build, Package and Push Images / docs (push) Failing after 2m49s
Some checks failed
Build, Package and Push Images / preprocess (push) Successful in 2s
Build, Package and Push Images / build (push) Successful in 24s
Build, Package and Push Images / sbom-scan (push) Successful in 34s
Build, Package and Push Images / container-build (push) Successful in 1m34s
Build, Package and Push Images / sonarqube (push) Successful in 1m35s
Build, Package and Push Images / container-sbom-scan (push) Successful in 36s
Build, Package and Push Images / docs (push) Failing after 2m49s
This commit is contained in:
parent
75900a198c
commit
c0bfb158e0
1 changed files with 10 additions and 5 deletions
|
@ -35,20 +35,25 @@ jobs:
|
|||
set -e
|
||||
export DISPLAY=:99
|
||||
Xvfb :99 &
|
||||
/opt/builder/bin/idea.sh helpbuilderinspect -source-dir . -product ${{env.INSTANCE}} -output-dir public/ || true
|
||||
/opt/builder/bin/idea.sh helpbuilderinspect -source-dir . -product ${{env.INSTANCE}} -output-dir artifacts/ || true
|
||||
echo "Test existing of ${{ env.ARTIFACT }} artifact"
|
||||
test -e public/${{ env.ARTIFACT }}
|
||||
- name: rename artifact
|
||||
run: |
|
||||
ls
|
||||
mv ${{ env.ARTIFACT }} wiki.zip
|
||||
mv ${{ env.ARTIFACT }} artifacts/wiki.zip
|
||||
- name: Upload documentation
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: docs
|
||||
path: |
|
||||
wiki.zip
|
||||
report.json
|
||||
artifacts/wiki.zip
|
||||
artifacts/report.json
|
||||
retention-days: 14
|
||||
- name: Upload algolia-indexes
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: algolia-indexes
|
||||
path: artifacts/${{ env.ALGOLIA_ARTIFACT }}
|
||||
retention-days: 14
|
||||
|
||||
build:
|
||||
|
|
Loading…
Reference in a new issue