travis: Update artifact names

This commit is contained in:
armaniferrante 2021-08-09 02:48:47 -07:00
parent 2e81b6276e
commit 4ac6e64471
No known key found for this signature in database
GPG Key ID: 58BEF301E91F7828
1 changed files with 4 additions and 4 deletions

View File

@ -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: