forked from nordicsemi/pc-nrfconnect-ppk
-
Notifications
You must be signed in to change notification settings - Fork 0
25 lines (23 loc) · 728 Bytes
/
release.yml
File metadata and controls
25 lines (23 loc) · 728 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
name: Release
on:
workflow_dispatch:
inputs:
source:
description: 'Source to release to'
type: choice
options:
- release-test (internal)
- test (internal)
- official (external)
ref:
description:
'Ref (Tag, branch, commit SHA) to release. Default to the
default branch'
type: string
jobs:
release:
uses: NordicSemiconductor/pc-nrfconnect-shared/.github/workflows/release-app.yml@main
with:
source: ${{ inputs.source }}
ref: ${{ inputs.ref }}
secrets: inherit