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
|
set -e
|
||||||
export DISPLAY=:99
|
export DISPLAY=:99
|
||||||
Xvfb :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"
|
echo "Test existing of ${{ env.ARTIFACT }} artifact"
|
||||||
test -e public/${{ env.ARTIFACT }}
|
test -e public/${{ env.ARTIFACT }}
|
||||||
- name: rename artifact
|
- name: rename artifact
|
||||||
run: |
|
run: |
|
||||||
ls
|
mv ${{ env.ARTIFACT }} artifacts/wiki.zip
|
||||||
mv ${{ env.ARTIFACT }} wiki.zip
|
|
||||||
- name: Upload documentation
|
- name: Upload documentation
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: docs
|
name: docs
|
||||||
path: |
|
path: |
|
||||||
wiki.zip
|
artifacts/wiki.zip
|
||||||
report.json
|
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
|
retention-days: 14
|
||||||
|
|
||||||
build:
|
build:
|
||||||
|
|
Loading…
Reference in a new issue