forked from babylonlabs-io/staking-api-service
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (30 loc) · 859 Bytes
/
release.yml
File metadata and controls
33 lines (30 loc) · 859 Bytes
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
32
33
name: Release Workflow
permissions:
contents: write
on:
workflow_dispatch:
inputs:
tag:
description: 'Tag to release'
required: true
type: string
description:
description: 'Release description'
required: true
type: string
prerelease:
description: 'Whether prerelease is enabled'
required: true
type: boolean
default: false
jobs:
call-reusable-release:
uses: babylonlabs-io/.github/.github/workflows/reusable_github_release.yml@5151754256060bf160c411d0784f831f29882106 # v0.13.4
with:
tag: ${{ inputs.tag }}
description: ${{ inputs.description }}
prerelease: ${{ inputs.prerelease }}
build_command: |
make install
docker_image_name: babylonlabs/staking-api-service:${{ inputs.tag }}
secrets: inherit