Skip to content

Commit

Permalink
Configure github workflow for release
Browse files Browse the repository at this point in the history
  • Loading branch information
ArchangelSDY committed Dec 17, 2021
1 parent 9534a5b commit 35f6a77
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Release

on:
release:
types: [ created ]

jobs:

build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v2

- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17

- name: Build
run: make build

- name: Test
run: make test

- name: Release
uses: softprops/action-gh-release@v1
with:
files: bin/kdebug
generate_release_notes: true

0 comments on commit 35f6a77

Please sign in to comment.