Skip to content

Commit

Permalink
[FEAT] add upload pipeline for macOS arm64 artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjosh committed Mar 18, 2023
1 parent 1901a30 commit ed7a270
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/go-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit ed7a270

Please sign in to comment.