-
Notifications
You must be signed in to change notification settings - Fork 8
31 lines (27 loc) · 913 Bytes
/
release.yml
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
26
27
28
29
30
31
name: Contract Release
on:
workflow_dispatch:
inputs:
release_name:
description: 'Unique release name'
required: true
type: string
jobs:
release-contract-webauthn-factory:
uses: kalepail/soroban-build-workflow/.github/workflows/release.yml@main
with:
release_name: ${{ github.ref_name }}
release_description: 'Release of the factory contract'
relative_path: 'contracts'
package: 'webauthn-factory'
secrets:
release_token: ${{ secrets.GITHUB_TOKEN }}
release-contract-webauthn-secp256r1:
uses: kalepail/soroban-build-workflow/.github/workflows/release.yml@main
with:
release_name: ${{ github.ref_name }}
release_description: 'Release of the secp256r1 contract'
relative_path: 'contracts'
package: 'webauthn-secp256r1'
secrets:
release_token: ${{ secrets.GITHUB_TOKEN }}