-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(release): 👷 GH workflow for release (#146)
- Loading branch information
1 parent
e275744
commit 8decaf0
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: release | ||
|
||
on: | ||
push: | ||
tags: | ||
- v[0].[0-9]+.[0-9]+ | ||
|
||
jobs: | ||
upload-release-assets: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
- name: Install cross-compilation tools | ||
run: | | ||
set -ex | ||
sudo apt-get update | ||
sudo apt-get install -y gcc-aarch64-linux-gnu musl-tools | ||
- name: Build artifacts for arm64/amd64 | ||
run: make build-all | ||
- name: Create checksums and tarballs | ||
run: | | ||
set -ex | ||
echo "Creating checksums and tarballs" | ||
cd .build/linux-amd64 | ||
sha256sum signoz-collector > signoz-collector-linux-amd64.sha256 | ||
tar -czvf signoz-collector-linux-amd64.tar.gz signoz-collector | ||
cd ../linux-arm64 | ||
sha256sum signoz-collector > signoz-collector-linux-arm64.sha256 | ||
tar -czvf signoz-collector-linux-arm64.tar.gz signoz-collector | ||
- name: Create release and upload assets | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
files: | | ||
.build/linux-amd64/signoz-collector-linux-amd64.sha256 | ||
.build/linux-amd64/signoz-collector-linux-amd64.tar.gz | ||
.build/linux-arm64/signoz-collector-linux-arm64.sha256 | ||
.build/linux-arm64/signoz-collector-linux-arm64.tar.gz | ||
generate_release_notes: true |