Skip to content

Commit

Permalink
Fix attach_workspace vs checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
AliSoftware committed Sep 13, 2021
1 parent 3100f43 commit 4ca3621
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,8 @@ jobs:
path: build
destination: Artifacts
- persist_to_workspace:
root: .
paths: ['build/*.aab'] # So they are made available for the "Create GitHub Release" job
root: build
paths: ['*.aab'] # So they are made available for the "Create GitHub Release" job
- slack/status:
include_job_number_field: false
include_project_field: false
Expand All @@ -158,12 +158,12 @@ jobs:
name: android/default
api-version: "29"
steps:
- attach_workspace:
at: .
- git/shallow-checkout:
init-submodules: false
- bundle-install/bundle-install:
cache_key_prefix: *release-build-cache-key
- attach_workspace:
at: build # Restore *.aab files built from "Release Build" jobs so we can attach them to the GitHub release
- run:
name: Create GitHub Release
command: |
Expand Down

0 comments on commit 4ca3621

Please sign in to comment.