Skip to content

Commit

Permalink
chore: add Stellar Expert WASM release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mootz12 committed Apr 30, 2024
1 parent 86481d1 commit 05b4b7a
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
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-governor:
uses: stellar-expert/soroban-build-workflow/.github/workflows/release.yml@main
with:
release_name: ${{ github.ref_name }}
release_description: 'Comet Factory Release'
relative_path: '["factory"]'
package: 'factory'
secrets:
release_token: ${{ secrets.GITHUB_TOKEN }}

release-contract-votes:
uses: stellar-expert/soroban-build-workflow/.github/workflows/release.yml@main
with:
release_name: ${{ github.ref_name }}
release_description: 'Comet Pool Release'
relative_path: '["contracts"]'
package: 'contracts'
secrets:
release_token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 05b4b7a

Please sign in to comment.