Hello gitlab-community!
image: alpine:latest
stages:
- build
- test
- deploy
before_script:
- apk update
- apk add maven
build:
stage: build
tags:
- runner
script: - echo “Building your application…”
artifacts:
stage: test
tags:
- runner
script: - echo “Running unit tests…”
#- k6 run <test_script.js>
deploy:
stage: deploy
tags:
- runner
script: - echo “Deploying application…”
- echo “Application successfully deployed.”
with the above script i am not able to get the artifacts as per my analysis . how to get proper artifacts and that should reflect in my project repo
Any help is kindly appreciated, thanks in advance