From ed7a27063960ac965fcd698b81ebaead15036c58 Mon Sep 17 00:00:00 2001 From: Josh Date: Sat, 18 Mar 2023 16:37:29 +0330 Subject: [PATCH] [FEAT] add upload pipeline for macOS arm64 artifact --- .github/workflows/go-artifacts.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/go-artifacts.yml b/.github/workflows/go-artifacts.yml index 9a37be90..6cfd63b7 100644 --- a/.github/workflows/go-artifacts.yml +++ b/.github/workflows/go-artifacts.yml @@ -41,13 +41,20 @@ jobs: make build-artifacts printf '::set-output name=version::%s\n' "$(./dist/helm_ls_linux_amd64 version | head -n 4)" - - name: 'Upload macOS artifact' + - name: 'Upload macOS-amd64 artifact' uses: actions/upload-artifact@v2 with: name: helm_ls_darwin_amd64 path: ./dist/helm_ls_darwin_amd64 retention-days: 1 + - name: 'Upload macOS-arm64 artifact' + uses: actions/upload-artifact@v2 + with: + name: helm_ls_darwin_arm64 + path: ./dist/helm_ls_darwin_arm64 + retention-days: 1 + - name: 'Upload linux/amd64 artifact' uses: actions/upload-artifact@v2 with: