Skip to content

Commit

Permalink
feat: add alpine arm (#856)
Browse files Browse the repository at this point in the history
## What

## Why

## Notes
  • Loading branch information
mikhail-klimko authored Apr 30, 2024
1 parent cf8e8e4 commit 9e55ce6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
11 changes: 6 additions & 5 deletions docs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -368,11 +368,12 @@ const createDownloadPage = async () => {
'and download the binary that matches your operating system.<br>\n' +
'We currently support the following OS: <br>\n' +
'<ul>\n' +
' <li><a href=' + links[0] + ' target="_blank">Alpine-x64</a></li>\n' +
' <li><a href=' + links[1] + ' target="_blank">Linux-x64</a></li>\n' +
' <li><a href=' + links[2] + ' target="_blank">Macos-x64</a></li>\n' +
' <li><a href=' + links[3] + ' target="_blank">Windows-x64</a></li>\n' +
' <li><a href=' + links[4] + ' target="_blank">Alpine-arm64</a></li>\n' +
' <li><a href=' + links[0] + ' target="_blank">Alpine-arm64</a></li>\n' +
' <li><a href=' + links[1] + ' target="_blank">Alpine-x64</a></li>\n' +
' <li><a href=' + links[2] + ' target="_blank">Linux-arm64</a></li>\n' +
' <li><a href=' + links[3] + ' target="_blank">Linux-x64</a></li>\n' +
' <li><a href=' + links[4] + ' target="_blank">Macos-x64</a></li>\n' +
' <li><a href=' + links[5] + ' target="_blank">Windows-x64</a></li>\n' +
'</ul> \n' +
'\n' +
'After downloading the binary, untar or unzip it and your are good to go.<br>\n' +
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "codefresh",
"version": "0.87.3",
"version": "0.87.4",
"description": "Codefresh command line utility",
"main": "index.js",
"preferGlobal": true,
Expand All @@ -9,7 +9,7 @@
"test": "jest .spec.js --coverage",
"e2e": "bash e2e/e2e.spec.sh",
"eslint": "eslint --fix lib/logic/**",
"pkg": "pkg . -t node16-alpine-x64,node16-macos-x64,node16-linux-x64,node16-win-x64,node16-linux-arm64 --out-path ./dist",
"pkg": "pkg . -t node16-alpine-x64,node16-alpine-arm64,node16-macos-x64,node16-linux-x64,node16-win-x64,node16-linux-arm64 --out-path ./dist",
"serve-docs": "yarn build-local-docs && cd temp && hugo server -D",
"serve-docs-beta": "ALLOW_BETA_COMMANDS=true yarn build-local-docs && cd temp && hugo server -D",
"build-local-docs": "node ./docs/index.js",
Expand Down Expand Up @@ -115,4 +115,4 @@
"./test-setup.js"
]
}
}
}

0 comments on commit 9e55ce6

Please sign in to comment.