Skip to content

Commit 9073902

Browse files
committed
ci skip
1 parent d1a199c commit 9073902

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

.github/workflows/release-msi.nu

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Created: 2025/05/21 19:05:20
44
# Description:
5-
# A script to build a Windows MSI package for NuShell. Need wix 6.0 or later.
5+
# A script to build Windows MSI packages for NuShell. Need wix 6.0 to be intalled.
66
# The script will download the specified NuShell release, extract it, and create an MSI package.
77

88
def build-msi [] {
@@ -33,7 +33,7 @@ def build-msi [] {
3333

3434
def fetch-nu-pkg [] {
3535
mkdir wix/nu
36-
gh release download $env.REF --repo nushell/nightly --pattern $'*-($env.TARGET).zip' --dir wix/nu
36+
gh release download $env.REF --pattern $'*-($env.TARGET).zip' --dir wix/nu
3737
cd wix/nu
3838
let pkg = ls *.zip | get name.0
3939
unzip $pkg

.github/workflows/release-msi.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ jobs:
6565
OS: ${{ matrix.os }}
6666
REF: ${{ inputs.tag || 'v0.103.0' }}
6767
TARGET: ${{ matrix.target }}
68-
_EXTRA_: ${{ matrix.extra }}
6968
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7069

7170
# REF: https://github.com/marketplace/actions/gh-release

0 commit comments

Comments
 (0)