Skip to content

Commit 5775e10

Browse files
Env name wasn't the problem...
1 parent ee17f20 commit 5775e10

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
env:
2525
PR_NAME: ${{ github.event.inputs.name }}
2626
PR_TAG: ${{ github.event.inputs.tag }}
27-
NS_UPDATER_VERSION: {{ github.event.inputs.updater_version }}
27+
UPDATER_VERSION: ${{ github.event.inputs.updater_version }}
2828

2929
steps:
3030
- name: Checkout Repo
@@ -57,7 +57,7 @@ jobs:
5757
- name: Run Scripts
5858
run: |
5959
./Scripts/build.sh -p
60-
./Scripts/package.sh -p -s $PR_TAG -u $NS_UPDATER_VERSION
60+
./Scripts/package.sh -p -s $PR_TAG -u $UPDATER_VERSION
6161
env:
6262
SPARKLE_PRIVATE_KEY: ${{ secrets.SPARKLE_PRIVATE_KEY }}
6363
SPARKLE_PUBLIC_KEY: ${{ secrets.SPARKLE_PUBLIC_KEY }}

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
env:
2525
PR_NAME: ${{ github.event.inputs.name }}
2626
PR_TAG: ${{ github.event.inputs.tag }}
27-
NS_UPDATER_VERSION: {{ github.event.inputs.updater_version }}
27+
UPDATER_VERSION: ${{ github.event.inputs.updater_version }}
2828

2929
steps:
3030
- name: Checkout Repo
@@ -60,7 +60,7 @@ jobs:
6060
- name: Run Scripts
6161
run: |
6262
./Scripts/build.sh
63-
./Scripts/package.sh -s $PR_TAG -u $NS_UPDATER_VERSION
63+
./Scripts/package.sh -s $PR_TAG -u $UPDATER_VERSION
6464
env:
6565
SPARKLE_PRIVATE_KEY: ${{ secrets.SPARKLE_PRIVATE_KEY }}
6666
SPARKLE_PUBLIC_KEY: ${{ secrets.SPARKLE_PUBLIC_KEY }}
@@ -90,7 +90,7 @@ jobs:
9090
git checkout -b "${branch}"
9191
9292
git add .
93-
git commit -m "Update Appcasts and Updater for SRMM version $PR_TAG and Updater version $NS_UPDATER_VERSION"
93+
git commit -m "Update Appcasts and Updater for SRMM version $PR_TAG and Updater version $UPDATER_VERSION"
9494
git push origin "${branch}"
9595
env:
9696
GIT_AUTHOR_NAME: github-actions

0 commit comments

Comments
 (0)