We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56ca477 commit 56e1b3aCopy full SHA for 56e1b3a
.github/ISSUE_TEMPLATE
@@ -0,0 +1,18 @@
1
+## Expected Behavior
2
+
3
4
+## Actual Behavior
5
6
7
+## Steps to Reproduce the Problem
8
9
+ 1.
10
11
12
13
+## Specifications
14
15
+ - Version:
16
+ - Git version:
17
+ - Operating System:
18
.github/workflows/on-push-v-tags.yaml
@@ -0,0 +1,27 @@
+on:
+ push:
+ tags:
+ - 'v*'
+name: Releases
+jobs:
+ build:
+ name: Draft Release
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout code
+ uses: actions/checkout@v2
+ with:
+ ref: ${{ github.ref }}
+ - name: Build project
19
+ run: make release
20
21
+ - name: Release
22
+ uses: softprops/action-gh-release@v1
23
+ env:
24
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
25
26
+ draft: true
27
+ files: dist/releases/*
0 commit comments