Skip to content

Commit

Permalink
add release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
vorlon authored Oct 6, 2021
1 parent 4ed275b commit 929a044
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: automatic-release

# Controls when the workflow will run
on:
push:
tags:
- "v*"
workflow_dispatch:

jobs:
tagged-release:
runs-on: ubuntu-latest
steps:
- name: Automatic Releases
uses: marvinpinto/[email protected]
with:
# GitHub secret token
repo_token: "${{ secrets.GITHUB_TOKEN }}"
draft: true
prerelease: false
# Assets to upload to the release
files: |
LICENSE
check_nvme.sh

0 comments on commit 929a044

Please sign in to comment.