We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e4073e commit f7af33bCopy full SHA for f7af33b
.github/workflows/publish-swift-package.yaml
@@ -3,9 +3,14 @@ on:
3
workflow_dispatch:
4
inputs:
5
version:
6
- description: 'nostr-sdk repo release (MAJOR.MINOR.PATCH)'
+ description: 'Release (MAJOR.MINOR.PATCH)'
7
required: true
8
type: string
9
+ ref:
10
+ description: 'Ref (branch, tag, commit) to checkout (from rust-nostr/nostr repo)'
11
+ required: true
12
+ type: string
13
+ default: 'master'
14
15
jobs:
16
build-tag-release:
@@ -19,7 +24,7 @@ jobs:
19
24
with:
20
25
repository: ${{ github.repository_owner }}/nostr
21
26
path: build
22
- # ref: v${{ inputs.version }}
27
+ ref: ${{ inputs.ref }}
23
28
29
- name: Checkout nostr-sdk-swift repo
30
uses: actions/checkout@v3
0 commit comments