Skip to content

Commit

Permalink
Create release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
derekgottlieb committed Nov 25, 2021
1 parent 2e11d47 commit 091607a
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: release

on:
push:
tags:
- '*'

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: build
run: ./build.sh

- name: Release
uses: softprops/action-gh-release@v1
with:
files: nomad_*.spk
prerelease: true
fail_on_unmatched_files: true

0 comments on commit 091607a

Please # to comment.