Artifact existing zip
Description
I have an application with a grunt task that does the packaging and outputs the final app zip, o the "artifact" zip. I would like to specify that zip as the artifact, if the path to said zip is specified for the artifacts
job, the results is the grunt generated zip inside the artifact generated zip (zipception!).
Proposal
Be able to specify a specific file as the artifact. Or is there another way to accomplish this?
This is my .gitlab-ci.yml
:
image: node:7.3.0
releaser:
stage: deploy
only:
- tags
script:
- npm install -g grunt-cli
- npm install
- grunt package
artifacts:
name: ${CI_PROJECT_NAME}_${CI_BUILD_REF_NAME}
paths:
- dist/app.zip