Skip to content

Commit dd30f4e

Browse files
Okay, this fixes it
1 parent 82b22cf commit dd30f4e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/create-draft-preview.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ jobs:
5050
id: create_release
5151
uses: ncipollo/release-action@b7eabc95ff50cbeeedec83973935c8f306dfcd0b # v1.20
5252
with:
53-
tag: "v$PR_TAG"
54-
name: $PR_NAME
53+
tag: "v${{ env.PR_TAG }}"
54+
name: ${{ env.PR_NAME }}
5555
draft: true
5656
generateReleaseNotesPreviousTag: true
5757

.github/workflows/create-draft-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ jobs:
5353
id: create_release
5454
uses: ncipollo/release-action@b7eabc95ff50cbeeedec83973935c8f306dfcd0b # v1.20
5555
with:
56-
tag: "v$PR_TAG"
57-
name: "$PR_NAME"
56+
tag: "v${{ env.PR_TAG }}"
57+
name: ${{ env.PR_NAME }}
5858
draft: true
5959
generateReleaseNotesPreviousTag: true
6060

@@ -106,7 +106,7 @@ jobs:
106106
107107
gh pr create \
108108
--title "Update Appcasts and Updater" \
109-
--body "Automated update for SRMM version $PR_TAG and Updater version $" \
109+
--body "Automated update for SRMM version $PR_TAG and Updater version $PR_UPDATER_VERSION" \
110110
--head "${branch}" \
111111
--base main
112112
env:

0 commit comments

Comments
 (0)