Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
just continue
  • Loading branch information
fbielejec committed Nov 16, 2022
commit 61b72c68afe839f2cf1f1ee4655b647be1dd2a87
3 changes: 2 additions & 1 deletion .github/workflows/contracts-e2e-tests-and-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -231,12 +231,13 @@ jobs:
# tar -xzf targets.tgz

- name: Copy metadata.json and addresses.json files from S3 bucket
continue-on-error: true
shell: bash
run: |
aws s3 cp s3://${{ secrets.CI_S3BUCKET_NAME }}/${{ env.S3BUCKET_PATH }}/addresses.json contracts/addresses.json
for i in ticket_token marketplace button game_token simple_dex wrapped_azero access_control; do \
mkdir -p contracts/"$i"/target/ink
aws s3 cp s3://${{ secrets.CI_S3BUCKET_NAME }}/${{ env.S3BUCKET_PATH }}/"$i"/metadata.json contracts/"$i"/target/ink/metadata.json; \ || true
aws s3 cp s3://${{ secrets.CI_S3BUCKET_NAME }}/${{ env.S3BUCKET_PATH }}/"$i"/metadata.json contracts/"$i"/target/ink/metadata.json; \
done

- name: Run clean.sh script
Expand Down