Skip to content

Commit

Permalink
Add automated release
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles Dusek committed May 8, 2024
1 parent 0499629 commit 85b1bae
Showing 1 changed file with 64 additions and 0 deletions.
64 changes: 64 additions & 0 deletions .github/workflows/automated-release.yml
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

0 comments on commit 85b1bae

Please sign in to comment.