Update upgrade handler to v1.1.5dev #53
Workflow file for this run
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
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 |