Skip to content

Commit b8614ef

Browse files
Update preview-and-release.yml
1 parent 7053365 commit b8614ef

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/preview-and-release.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,16 @@ jobs:
106106
steps:
107107
- uses: actions/checkout@v2
108108
- name: Get Version
109+
id: GetVersion
109110
run: .\Scripts\getLatestVersion.ps1
110111
shell: pwsh
111112
- name: Create tag
112113
uses: rickstaa/[email protected]
113114
with:
114-
tag: "v$RELEASE_TAG"
115+
tag: ${{ steps.GetVersion.outputs.tag }}
116+
- name: Queue Git Release
117+
uses: benc-uk/workflow-dispatch@v1
118+
with:
119+
workflow: Git Release
120+
token: ${{ secrets.PERSONAL_TOKEN }}
121+
ref: ${{ steps.GetVersion.outputs.tag }}

0 commit comments

Comments
 (0)