Path for Generated Files and Directories

I’m attempting to build a Gatsby (A React framework) project and then deploy the project to an S3 bucket.

The build works fine however when I attempt to deploy the newly created “public” directory I get an error stating :

The user-provided path public/ does not exist.
Exited with code 255

What IS the path for newly created files and directories?

Here’s my .yml

# Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2
jobs:
  build:
    docker:
      # specify the version you desire here
      - image: circleci/node:8.9.0
      
      # Specify service dependencies here if necessary
      # CircleCI maintains a library of pre-built images
      # documented at https://circleci.com/docs/2.0/circleci-images/
      # - image: circleci/mongo:3.4.4

    working_directory: ~/repo

    steps:
      - checkout

      # Download and cache dependencies
      - restore_cache:
          keys:
          - v1-dependencies-{{ checksum "package.json" }}
          # fallback to using the latest cache if no exact match is found
          - v1-dependencies-

      - run: yarn install

      - save_cache:
          paths:
            - node_modules
          key: v1-dependencies-{{ checksum "package.json" }}
        
      # run tests!
      - run: yarn lint
      
      - run:
          name: Test (by building static pages)
          command: npm run build
  deploy:
    docker:
      - image: circleci/python:2.7-jessie
    working_directory: ~/circleci-docs
    steps:
      - run:
          name: Install awscli
          command: sudo pip install awscli
      - run:
          name: Deploy to S3
          command: aws s3 cp public/ s3://My-Bucket --recursive
          
workflows:
  version: 2
  build-deploy:
    jobs:
      - build
      - deploy:
          requires:
            - build
      filters:
        branches:
          only: master

Ah, your deploy job will get a completely fresh container, so nothing from the first job will still exist. However, you can persist folders between jobs in a workflow using workspaces.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.