From 4ac6e64471b996840b3e2182bee2056164d049fa Mon Sep 17 00:00:00 2001 From: armaniferrante Date: Mon, 9 Aug 2021 02:48:47 -0700 Subject: [PATCH] travis: Update artifact names --- .travis.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index ea617c7..e9bd9e3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,8 +13,8 @@ git: before_deploy: - anchor build --verifiable - echo "### SHA256 Checksums" > release_notes.md - - sha256sum target/deploy/swap.so > binary.txt - - sha256sum target/idl/swap.json > idl.txt + - sha256sum target/deploy/serum_swap.so > binary.txt + - sha256sum target/idl/serum_swap.json > idl.txt - cat *.txt >> release_notes.md - echo "" >> release_notes.md - echo "Built with Anchor [${ANCHOR_VERSION}](https://github.com/project-serum/anchor/releases/tag/${ANCHOR_VERSION})." >> release_notes.md @@ -23,8 +23,8 @@ deploy: provider: releases edge: true file: - - "target/deploy/swap.so" - - "target/idl/swap.json" + - "target/deploy/serum_swap.so" + - "target/idl/serum_swap.json" release_notes_file: release_notes.md skip_cleanup: true on: