I am working on a poc. My colleagues gave me a whiteapp. In this whiteapp, I have a .gitlab-ci.yml.
I did a clone of a project. In the previous one, I was able to execute the full CI, and Kaniko was able to push the docker image in the Artifactory.
However, my clone can’t. I am trying to understand the part that fails.
Here is the step of the CI:
build_tag:
stage: build_tag
script:
- APPLICATION_TAG_VERSION=`cat $VERSION_FILE`
- 'echo GENERATED TAG : $APPLICATION_TAG_VERSION'
- git checkout $APPLICATION_TAG_VERSION
- yarn ng build --prod
extends: .dependencies_cache
artifacts:
when: on_success
paths:
- $APP_OUTPUT_PATH
only:
- master
<<: *common_node
<<: *common_tag
<<: *common_deploy
Here is the error log:
Uploading artifacts for successful job
00:00 Uploading artifacts...
WARNING: /builds/xxx/dist/xxxx-redundant: no matching files ERROR: No files to upload Job succeeded
Thank you !