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 7053365 commit b8614efCopy full SHA for b8614ef
.github/workflows/preview-and-release.yml
@@ -106,9 +106,16 @@ jobs:
106
steps:
107
- uses: actions/checkout@v2
108
- name: Get Version
109
+ id: GetVersion
110
run: .\Scripts\getLatestVersion.ps1
111
shell: pwsh
112
- name: Create tag
113
uses: rickstaa/[email protected]
114
with:
- 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