-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add release action for Stellar Expert WASM builds
- Loading branch information
Showing
1 changed file
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: Stellar Expert WASM Release | ||
on: | ||
push: | ||
tags: | ||
- 'v*' # triggered whenever a new tag (previxed with "v") is pushed to the repository | ||
jobs: | ||
release-contract-backstop: | ||
uses: stellar-expert/soroban-build-workflow/.github/workflows/release.yml@main | ||
with: | ||
release_name: ${{ github.ref_name }} | ||
release_description: 'Blend Backstop Release' | ||
package: 'backstop' | ||
make_target: 'build' | ||
secrets: | ||
release_token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
release-contract-pool: | ||
uses: stellar-expert/soroban-build-workflow/.github/workflows/release.yml@main | ||
with: | ||
release_name: ${{ github.ref_name }} | ||
release_description: 'Blend Pool Release' | ||
package: 'pool' | ||
make_target: 'build' | ||
secrets: | ||
release_token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
release-contract-emitter: | ||
uses: stellar-expert/soroban-build-workflow/.github/workflows/release.yml@main | ||
with: | ||
release_name: ${{ github.ref_name }} | ||
release_description: 'Blend Emitter Release' | ||
package: 'emitter' | ||
secrets: | ||
release_token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
release-contract-pool-factory: | ||
uses: stellar-expert/soroban-build-workflow/.github/workflows/release.yml@main | ||
with: | ||
release_name: ${{ github.ref_name }} | ||
release_description: 'Blend Pool Factory Release' | ||
package: 'pool-factory' | ||
make_target: 'build' | ||
secrets: | ||
release_token: ${{ secrets.GITHUB_TOKEN }} |