Skip to content

Commit 92a0e0b

Browse files
release.yml
1 parent fb9e041 commit 92a0e0b

File tree

2 files changed

+31
-1
lines changed

2 files changed

+31
-1
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: 2
22
updates:
33
- package-ecosystem: "cargo"
4-
directories: ["/enclaves/**"]
4+
directories: ["/enclaves/**/*"]
55
schedule:
66
interval: "weekly"
77
open-pull-requests-limit: 3

.github/workflows/release.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Release
2+
on:
3+
workflow_dispatch:
4+
inputs:
5+
enclave:
6+
type: string
7+
required: true
8+
description: 'Enclave to be released'
9+
network:
10+
type: string
11+
required: true
12+
default: mainnet
13+
options:
14+
- testnet
15+
- mainnet
16+
description: 'The network on which the enclave runs.'
17+
tag:
18+
type: string
19+
required: true
20+
description: 'version tag'
21+
22+
jobs:
23+
print:
24+
runs-on: ubuntu-24.04
25+
steps:
26+
- name: 'Print the input values'
27+
run: |
28+
echo ${{ github.event.inputs.enclave }}
29+
echo ${{ github.event.inputs.network }}
30+
echo ${{ github.event.inputs.tag }}

0 commit comments

Comments
 (0)