File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -65,13 +65,21 @@ jobs:
6565 with :
6666 path : install.iss
6767
68- - name : Upload Artifacts
68+ - name : Upload Artifacts (non-Windows)
69+ if : matrix.os != 'windows-latest'
70+ uses : actions/upload-artifact@v4
71+ with :
72+ name : build-artifacts-${{ matrix.os }}-${{ matrix.goarch }}
73+ path : ${{ matrix.output_name }}
74+
75+ - name : Upload Artifacts (Windows)
76+ if : matrix.os == 'windows-latest'
6977 uses : actions/upload-artifact@v4
7078 with :
7179 name : build-artifacts-${{ matrix.os }}-${{ matrix.goarch }}
7280 path : |
73- ${{ matrix.output_name }}
74- ${{ matrix.os == 'windows-latest' && ' Output/stackmatch-cli-setup.exe' || '' }}
81+ stackmatch-cli.exe
82+ Output/stackmatch-cli-setup.exe
7583
7684 release :
7785 needs : build
Original file line number Diff line number Diff line change 66 "github.com/spf13/cobra"
77)
88
9- const cliVersion = "0.1.6 " // Define the current version
9+ const cliVersion = "0.2.0 " // Define the current version
1010
1111var versionCmd = & cobra.Command {
1212 Use : "version" ,
You can’t perform that action at this time.
0 commit comments