Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Angular pipeline FTP does not send correct build

sourcer December 29, 2020
Hi, I want to make a pipeline that first compiles the angular project and then sends that build to the web via FTP.

I have modified the angular.json and the firebase.json with the folder where it is compiled. The problem is that when you do the steps, the compilation that you upload to the ftp is not the one that you compiled. Where is the compilation? What could be happening ?, I give you screenshots of everything I mentioned.


prueba1.PNGprueba2.PNGprueba3.PNG

 

1 answer

0 votes
Theodora Boudale
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
January 5, 2021

Hi @sourcer ,

Any files that you generate during a step will not be available in subsequent steps, unless you define them as artifacts.

If in your step named "Build Prod" there are files generated in the folder Front/app/public, that you want then to deploy in the next step named "Upload ftp", you should define the contents of this directory as artifacts.

The relevant section in the yml file would look like this:

- step:
    name: Build prod
    script:
      - cd Front/app
      - npm install -g @angular/cli
      - npm install
      - ng build
      - cd public
      - ls -l
    artifacts:
      - Front/app/public/**

You can read more on artifacts in the following documentation:

Please feel free to let us know if this works for you and if you need further assistance.

Kind regards,
Theodora

David salas castro January 5, 2021

Thank you very much Teodora, I'm going to try it.

Like Theodora Boudale likes this

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events