We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e06a2d8 commit aa67039Copy full SHA for aa67039
.gitattributes
@@ -1 +1,2 @@
1
-/tests export-ignore
+/tests export-ignore
2
+/.github export-ignore
.github/workflows/release.yml
@@ -0,0 +1,25 @@
+on:
+ push:
3
+ # Sequence of patterns matched against refs/tags
4
+ tags:
5
+ - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
6
+
7
+name: Release
8
9
+jobs:
10
+ release:
11
+ name: Release
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Checkout code
15
+ uses: actions/checkout@v2
16
+ - name: Create Release
17
+ id: create_release
18
+ uses: actions/create-release@v1
19
+ env:
20
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21
+ with:
22
+ tag_name: ${{ github.ref }}
23
+ release_name: Release ${{ github.ref }}
24
+ draft: false
25
+ prerelease: false
0 commit comments