Skip to content

Commit

Permalink
Merge pull request #82 from sensiblecodeio/release-workflow
Browse files Browse the repository at this point in the history
Add release workflow
  • Loading branch information
StevenMaude authored Nov 16, 2020
2 parents 8f0e805 + d860709 commit 6aad6c5
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/ci-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
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@v2
- name: Build project
run: |
make && mv hookbot hookbot_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: ./hookbot_linux_amd64
asset_name: hookbot_linux_amd64
asset_content_type: application/octet-stream

0 comments on commit 6aad6c5

Please sign in to comment.