From e163f8bfc911384bf67b6ae2ed61c394f6872442 Mon Sep 17 00:00:00 2001 From: Tasio Victoria Date: Sun, 19 Nov 2023 13:11:34 -0500 Subject: [PATCH] Try fix circleci publish_artifacts 4 --- .circleci/config.yml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6e4f60d..97f77a2 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -35,13 +35,12 @@ jobs: name: optimize x86_64 contracts command: ./scripts/optimize.sh - run: - name: Show x86_64 data - command: | - ls -l artifacts - cat artifacts/checksums.txt - - store_artifacts: - path: artifacts - destination: x86_64-artifacts + name: copy x86_64 artifacts + command: cp artifacts/* x86_64-artifacts/ + - persist_to_workspace: + root: . + paths: + - x86_64-artifacts/ optimize_arm64: machine: @@ -53,18 +52,19 @@ jobs: name: optimize arm64 contracts command: ./scripts/optimize-arm.sh - run: - name: Show ARM64 data - command: | - ls -l artifacts - cat artifacts/checksums.txt - - store_artifacts: - path: artifacts - destination: arm64-artifacts + name: copy arm64 artifacts + command: cp artifacts/* arm64-artifacts/ + - persist_to_workspace: + root: . + paths: + - arm64-artifacts/ upload_artifacts: docker: - image: cibuilds/github:0.13 steps: + - attach_workspace: + at: /workspace - checkout - run: name: Combine artifacts