-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Charles Dusek
committed
May 8, 2024
1 parent
0499629
commit 85b1bae
Showing
1 changed file
with
64 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,64 @@ | ||
on: | ||
push: | ||
tags: | ||
- "v*" | ||
|
||
name: Automated release build | ||
|
||
jobs: | ||
build: | ||
name: Build and upload release assets | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Set up Go 1.x | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: ^1.19 | ||
id: go | ||
|
||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Create Release | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{ github.ref }} | ||
release_name: ${{ github.ref }} | ||
draft: false | ||
prerelease: true | ||
|
||
# build & upload onomyd | ||
|
||
- name: Build onomyd | ||
run: make build | ||
|
||
- name: Upload onomyd | ||
id: upload-onomyd-release-asset | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: onomyd | ||
asset_name: onomyd | ||
asset_content_type: application/bin | ||
|
||
# build & upload onomyd arm64 | ||
|
||
- name: Build onomyd arm64 | ||
run: GOARCH=arm64 make build | ||
|
||
- name: Upload onomyd arm64 | ||
id: upload-onomyd-release-asset-arm | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: onomyd | ||
asset_name: onomyd-arm | ||
asset_content_type: application/bin |