Skip to content

Commit 9e55ce6

Browse files
feat: add alpine arm (#856)
## What ## Why ## Notes
1 parent cf8e8e4 commit 9e55ce6

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

docs/index.js

+6-5
Original file line numberDiff line numberDiff line change
@@ -368,11 +368,12 @@ const createDownloadPage = async () => {
368368
'and download the binary that matches your operating system.<br>\n' +
369369
'We currently support the following OS: <br>\n' +
370370
'<ul>\n' +
371-
' <li><a href=' + links[0] + ' target="_blank">Alpine-x64</a></li>\n' +
372-
' <li><a href=' + links[1] + ' target="_blank">Linux-x64</a></li>\n' +
373-
' <li><a href=' + links[2] + ' target="_blank">Macos-x64</a></li>\n' +
374-
' <li><a href=' + links[3] + ' target="_blank">Windows-x64</a></li>\n' +
375-
' <li><a href=' + links[4] + ' target="_blank">Alpine-arm64</a></li>\n' +
371+
' <li><a href=' + links[0] + ' target="_blank">Alpine-arm64</a></li>\n' +
372+
' <li><a href=' + links[1] + ' target="_blank">Alpine-x64</a></li>\n' +
373+
' <li><a href=' + links[2] + ' target="_blank">Linux-arm64</a></li>\n' +
374+
' <li><a href=' + links[3] + ' target="_blank">Linux-x64</a></li>\n' +
375+
' <li><a href=' + links[4] + ' target="_blank">Macos-x64</a></li>\n' +
376+
' <li><a href=' + links[5] + ' target="_blank">Windows-x64</a></li>\n' +
376377
'</ul> \n' +
377378
'\n' +
378379
'After downloading the binary, untar or unzip it and your are good to go.<br>\n' +

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codefresh",
3-
"version": "0.87.3",
3+
"version": "0.87.4",
44
"description": "Codefresh command line utility",
55
"main": "index.js",
66
"preferGlobal": true,
@@ -9,7 +9,7 @@
99
"test": "jest .spec.js --coverage",
1010
"e2e": "bash e2e/e2e.spec.sh",
1111
"eslint": "eslint --fix lib/logic/**",
12-
"pkg": "pkg . -t node16-alpine-x64,node16-macos-x64,node16-linux-x64,node16-win-x64,node16-linux-arm64 --out-path ./dist",
12+
"pkg": "pkg . -t node16-alpine-x64,node16-alpine-arm64,node16-macos-x64,node16-linux-x64,node16-win-x64,node16-linux-arm64 --out-path ./dist",
1313
"serve-docs": "yarn build-local-docs && cd temp && hugo server -D",
1414
"serve-docs-beta": "ALLOW_BETA_COMMANDS=true yarn build-local-docs && cd temp && hugo server -D",
1515
"build-local-docs": "node ./docs/index.js",
@@ -115,4 +115,4 @@
115115
"./test-setup.js"
116116
]
117117
}
118-
}
118+
}

0 commit comments

Comments
 (0)