Skip to content

Commit 14cf725

Browse files
committed
[PT-789] Publish requested version with merge
1 parent 502c69d commit 14cf725

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/release.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ name: Release
22

33
on:
44
workflow_call:
5+
tag:
6+
description: 'The tag to merge into'
7+
default: ''
8+
required: true
9+
type: string
510

611
jobs:
712
release:
@@ -14,7 +19,10 @@ jobs:
1419

1520
steps:
1621
- name: Checkout Sailthru branch
17-
uses: actions/checkout@sailthru
22+
uses: actions/checkout@${{ inputs.tag }}
23+
24+
- name: Merge sailthru -> tagged revision
25+
run: git merge sailthru
1826

1927
- name: Setup Node.js
2028
uses: actions/setup-node@v2

0 commit comments

Comments
 (0)