Browse Source

Create release.yml

Eugene Pankov 4 years ago
parent
commit
7514fa41a1
1 changed files with 19 additions and 0 deletions
  1. 19 0
      .github/workflows/release.yml

+ 19 - 0
.github/workflows/release.yml

@@ -0,0 +1,19 @@
+---
+name: "tagged-release"
+
+on:
+  push:
+    tags:
+      - "v*"
+
+jobs:
+  tagged-release:
+    name: "Tagged Release"
+    runs-on: "ubuntu-latest"
+
+    steps:
+      - uses: "marvinpinto/action-automatic-releases@latest"
+        with:
+          repo_token: "${{ secrets.GITHUB_TOKEN }}"
+          prerelease: false
+          draft: true