Hi everyone,
I created a bitbucket-pipelines.yml file and added a step in order to build frontend assets before transfering files to a server.
I cannot use rsync (pls don't ask why or recommend me using it. I just can't) and instead use scp.
But the problem lies within my build step, because it doesn't seem to upload artifacts which I then can transfer on my remote host system.
Here is a snippet of my pipelines file:
- step:
name: Build
image: node:10.16.0
caches:
- node
script:
- cd front-end
- npm install
- npm i gulp -g
- gulp build --production
artifacts:
- public/dist/**
- step:
name: Deploy Repository files using SCP to Staging
deployment: staging
script:
- pipe: atlassian/scp-deploy:0.3.12
variables:
USER: '$DEPLOY_USER'
SERVER: '$DEPLOY_HOST'
REMOTE_PATH: '$DEPLOY_PATH_STAGING'
LOCAL_PATH: '$BITBUCKET_CLONE_DIR/'
DEBUG: 'true'
This is the output
What am I missing that my Build step can't seem to be able to upload artifacts?
Any ideas?
Best regards
Alex
Hi @Alex Nowak,
Welcome to the Community!
I'll admit that I'm not 100% familiar with BitBucket Pipelines as our company uses a Bamboo server. However, we do use YAML specs for our build plan configurations and a number of things look similar.
Looking at the documentation for pipeline artifacts here:
https://support.atlassian.com/bitbucket-cloud/docs/use-artifacts-in-steps/
I see the statement: "Artifact paths are relative to the BITBUCKET_CLONE_DIR.
"
I know when I have been setting things up myself, this can be the bane of my existence as well. My first thought would be to check and make sure that "- public/dist/**"
Is actually the relative path you are expecting to get artifacts from. You could also test this by adding a second definition for a file that you know will exist in the root of the BITBUCKET_CLONE_DIR just to make sure that artifacts are actually being discovered and saved as a part of the build step.
Those would be the spots I'd start looking fist.
I hope that helps!
-Jimmy
@Alex Nowak were you able to find a solution for this? I am also facing the same issue. Target folder has the artifacts but they are not being uploaded to the artifacts tab to be able to use them in next steps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Jimmy Seddon Hi I have a different issue can you address it please....https://community.atlassian.com/t5/Bitbucket-questions/Pipeline-artifact-issue/qaq-p/2231012#U2231412
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.