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: