Skip to content

Commit

Permalink
[FEAT] add macOS arm64 artifact build to artifacts pipeline action
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjosh committed Mar 18, 2023
1 parent 95c79a3 commit 1901a30
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/go-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,11 +101,16 @@ jobs:
sha256sum helm_ls_windows_amd64/helm_ls_windows_amd64.exe > helm_ls_windows_amd64.sha256sum
echo "SHA_WINDOWS_64=$(cat helm_ls_windows_amd64.sha256sum)" >> $GITHUB_ENV
- name: Generate macOS SHA256 checksums
- name: Generate macOS-amd64 SHA256 checksums
run: |
sha256sum helm_ls_darwin_amd64/helm_ls_darwin_amd64 > helm_ls_darwin_amd64.sha256sum
echo "SHA_MACOS=$(cat helm_ls_darwin_amd64.sha256sum)" >> $GITHUB_ENV
- name: Generate macOS-arm64 SHA256 checksums
run: |
sha256sum helm_ls_darwin_arm64/helm_ls_darwin_arm64 > helm_ls_darwin_arm64.sha256sum
echo "SHA_MACOS_ARM=$(cat helm_ls_darwin_arm64.sha256sum)" >> $GITHUB_ENV
- name: Generate Linux-ARM SHA256 checksums
run: |
sha256sum helm_ls_linux_arm/helm_ls_linux_arm > helm_ls_linux_arm.sha256sum
Expand All @@ -129,6 +134,8 @@ jobs:
files: |
helm_ls_darwin_amd64:./helm_ls_darwin_amd64/helm_ls_darwin_amd64
helm_ls_darwin_amd64.sha256sum:./helm_ls_darwin_amd64.sha256sum
helm_ls_darwin_arm64:./helm_ls_darwin_amd64/helm_ls_darwin_arm64
helm_ls_darwin_arm64.sha256sum:./helm_ls_darwin_arm64.sha256sum
helm_ls_windows_amd64:./helm_ls_windows_amd64/helm_ls_windows_amd64.exe
helm_ls_windows_amd64.sha256sum:./helm_ls_windows_amd64.sha256sum
helm_ls_linux_amd64:./helm_ls_linux_amd64/helm_ls_linux_amd64
Expand All @@ -142,6 +149,9 @@ jobs:
### macOS (x64)
1. Download **helm_ls_darwin_amd64**
2. Run `./helm_ls_darwin_amd64`
### macOS (arm64)
1. Download **helm_ls_darwin_arm64**
2. Run `./helm_ls_darwin_arm64`
### windows (x64)
1. Download **helm_ls_windows_amd64.exe**
2. Run `./helm_ls_windows_amd64.exe`
Expand All @@ -156,6 +166,7 @@ jobs:
```
${{ env.SHA_LINUX_64 }}
${{ env.SHA_MACOS }}
${{ env.SHA_MACOS_ARM }}
${{ env.SHA_WINDOWS_64 }}
${{ env.SHA_LINUX_ARM }}
```

0 comments on commit 1901a30

Please sign in to comment.