Skip to content

Commit

Permalink
⚗️ testing build hash
Browse files Browse the repository at this point in the history
  • Loading branch information
MattPoblete committed Oct 25, 2024
1 parent 42483fc commit a307da5
Showing 1 changed file with 73 additions and 0 deletions.
73 changes: 73 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
name: Stellar expert release contracts workflow
on:
workflow_dispatch:
inputs:
release_name:
description: 'Unique name for the release'
required: true
type: string
permissions:
contents: write
pull-requests: write
repository-projects: write
packages: write
defaults:
run:
working-directory: ./

jobs:
release-soroswap-token:
uses: stellar-expert/soroban-build-workflow/.github/workflows/release.yml@main
with:
release_name: ${{ github.ref_name }}
release_description: 'soroswap token contract release'
relative_path: './contracts/token'
package: 'soroban-token-contract'
make_target: './Makefile'
secrets:
release_token: ${{ secrets.GITHUB_TOKEN }}
needs: []
release-soroswap-pair:
uses: stellar-expert/soroban-build-workflow/.github/workflows/release.yml@main
with:
release_name: ${{ github.ref_name }}
release_description: 'soroswap pair contract release'
relative_path: './contracts/pair'
package: 'soroswap-pair'
make_target: './Makefile'
secrets:
release_token: ${{ secrets.GITHUB_TOKEN }}
needs: [release-soroswap-token]
release-soroswap-factory:
uses: stellar-expert/soroban-build-workflow/.github/workflows/release.yml@main
with:
release_name: ${{ github.ref_name }}
release_description: 'soroswap factory contract release'
relative_path: './contracts/factory'
package: 'soroswap-factory'
make_target: './Makefile'
secrets:
release_token: ${{ secrets.GITHUB_TOKEN }}
needs: [release-soroswap-token, release-soroswap-pair]
release-soroswap-library:
uses: stellar-expert/soroban-build-workflow/.github/workflows/release.yml@main
with:
release_name: ${{ github.ref_name }}
release_description: 'soroswap library contract release'
relative_path: './contracts/library'
package: 'soroswap-library'
make_target: './Makefile'
secrets:
release_token: ${{ secrets.GITHUB_TOKEN }}
needs: [release-soroswap-token, release-soroswap-pair, release-soroswap-factory]
release-soroswap-router:
uses: stellar-expert/soroban-build-workflow/.github/workflows/release.yml@main
with:
release_name: ${{ github.ref_name }}
release_description: 'Swap of tokens when a direct pair does not exist, by using a given paths. It will also handle liquidity provision and manage deposit and withdrawal functions for liquidity providers within the Soroswap ecosystem.'
relative_path: './contracts/router'
package: 'soroswap-router'
make_target: './Makefile'
secrets:
release_token: ${{ secrets.GITHUB_TOKEN }}
needs: [release-soroswap-token, release-soroswap-pair, release-soroswap-factory]

0 comments on commit a307da5

Please sign in to comment.