Skip to content

Merge pull request #177 from sensiblecodeio/update-github-host-key #5

Merge pull request #177 from sensiblecodeio/update-github-host-key

Merge pull request #177 from sensiblecodeio/update-github-host-key #5

Workflow file for this run

on:
push:
tags:
- 'v*'
name: Upload Release Asset
jobs:
build:
name: Upload Release Asset
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Build project
run: |
make && mv hanoverd hanoverd_linux_amd64
- 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: true
prerelease: false
- name: Upload Release Asset
id: upload-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: ./hanoverd_linux_amd64
asset_name: hanoverd_linux_amd64
asset_content_type: application/octet-stream