Building and deploying in separate jobs

Nevermind. Figured it out. Needed to use workspaces.

Added this to the first job:

      # Persist into the workspace for use in deploy job. 
      - persist_to_workspace:
          root: public
          paths:
            - '*' 

Added this to the second job:

      - attach_workspace:
          at: public