Skip to content

Commit

Permalink
chore: add release step with publish on tag
Browse files Browse the repository at this point in the history
  • Loading branch information
rbjorklin committed Oct 24, 2021
1 parent 9e1122e commit e00e71d
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,12 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: make docker-build PROFILE=release
- name: Checkout
uses: actions/checkout@v2
- name: Build
run: make docker-build PROFILE=release
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: _build/default/src/bin/throttle_fstrim.exe

0 comments on commit e00e71d

Please sign in to comment.