-
Notifications
You must be signed in to change notification settings - Fork 1
25 lines (22 loc) · 1.06 KB
/
release.yml
File metadata and controls
25 lines (22 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
name: Build and Release # name it whatever you like
on:
workflow_dispatch:
permissions: # required permissions for the workflow
id-token: write
contents: write
attestations: write
jobs:
release-router-contract-v0:
uses: stellar-expert/soroban-build-workflow/.github/workflows/release.yml@main
with:
release_name: ${{ github.ref_name }} # use git tag as unique release name
package: 'stellar-router-v0' # package name to build
secrets: # the authentication token will be automatically created by GitHub
release_token: ${{ secrets.GITHUB_TOKEN }} # don't modify this line
release-router-contract-v1:
uses: stellar-expert/soroban-build-workflow/.github/workflows/release.yml@main
with:
release_name: ${{ github.ref_name }} # use git tag as unique release name
package: 'stellar-router-v1' # package name to build
secrets: # the authentication token will be automatically created by GitHub
release_token: ${{ secrets.GITHUB_TOKEN }} # don't modify this line