File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -111,20 +111,20 @@ jobs:
111111 if [ "$GOOS" = "windows" ]; then
112112 SUFFIX=".exe"
113113 fi
114- go build -ldflags "-X github.com/infracost/cli/version.Version=${VERSION}" -o "bin/infracost${SUFFIX}" main.go
114+ go build -ldflags "-X github.com/infracost/cli/version.Version=${VERSION}" -o "bin/infracost-preview ${SUFFIX}" main.go
115115
116116 - name : Package
117117 env :
118118 VERSION : ${{ needs.version.outputs.version }}
119119 GOOS : ${{ matrix.goos }}
120120 GOARCH : ${{ matrix.goarch }}
121121 run : |
122- ARCHIVE="infracost_ ${VERSION}_${GOOS}_${GOARCH}"
122+ ARCHIVE="infracost-preview_ ${VERSION}_${GOOS}_${GOARCH}"
123123 mkdir -p dist
124124 if [ "$GOOS" = "windows" ]; then
125- (cd bin && zip -r "../dist/${ARCHIVE}.zip" "infracost.exe")
125+ (cd bin && zip -r "../dist/${ARCHIVE}.zip" "infracost-preview .exe")
126126 else
127- tar -czf "dist/${ARCHIVE}.tar.gz" -C bin infracost
127+ tar -czf "dist/${ARCHIVE}.tar.gz" -C bin infracost-preview
128128 fi
129129
130130 - name : Upload
You can’t perform that action at this time.
0 commit comments