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 3cec4cb commit 5a0be94Copy full SHA for 5a0be94
.github/workflows/preview-and-release.yml
@@ -73,9 +73,16 @@ jobs:
73
steps:
74
- uses: actions/checkout@v2
75
- name: Get Version
76
+ id: GetVersion
77
run: .\Scripts\getLatestVersion.ps1
- shell: pwsh
78
+ shell: pwsh
79
- name: Create tag
80
uses: rickstaa/[email protected]
81
with:
- tag: "v$RELEASE_TAG"
82
+ tag: ${{ steps.GetVersion.outputs.tag }}
83
+ - name: Queue Git Release
84
+ uses: benc-uk/workflow-dispatch@v1
85
+ with:
86
+ workflow: Git Release
87
+ token: ${{ secrets.PERSONAL_TOKEN }}
88
+ ref: ${{ steps.GetVersion.outputs.tag }}
0 commit comments