I've been following this article regarding using Artifacts in the Pipelines, however I stuck and I have no idea WHERE these artifacts are and how can I access them.
To be more specific about my problem, please take a look on my `bitbucket-pipelines.yml` to understand my issue:
image: microsoft/dotnet:2.0-sdk
pipelines:
custom:
deploy-UAT:
- step:
name: API Build
caches:
- dotnetcore
script:
- mkdir -p dist/
- cd api-core/AzureApi/
- dotnet restore
- dotnet publish -c prod
- mv bin/prod/netcoreapp2.0/publish/ $BITBUCKET_CLONE_DIR/dist/api/
articacts:
- dist/**
- step:
name: Frontend Build
image: node:6.11.4
caches:
- nodewrapper
script:
- cd app/
- yarn --non-interactive
- npm run build
- mv dist/ $BITBUCKET_CLONE_DIR/dist/app/
articacts:
- dist/**
- step:
name: Deploy
image: trsouz/rsync
script:
- ls -lah dist/ # Buuu! Not exists
- ls -lah $BITBUCKET_CLONE_DIR/dist/ # Buuu! Not exists
definitions:
caches:
nodewrapper: app/node_modules
Problem is that the `dist/` folder is not available (or I just can't find it)
And yes - my build steps are working fine and they are in fact copying built artifacts to the specified path, but after step is completed it's no longer there...
Please, can you direct me with some example?
Cheers,
Piotr
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.