We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66a8b1d commit c360f65Copy full SHA for c360f65
1 file changed
.github/workflows/main.yml
@@ -7,8 +7,8 @@ env:
7
8
on:
9
push:
10
- branches:
11
- - main
+ tags:
+ - '[0-9]+.[0-9]+.[0-9]+'
12
13
permissions:
14
contents: read
@@ -48,6 +48,18 @@ jobs:
48
name: .net-app
49
path: ${{env.DOTNET_ROOT}}/Open5ETools
50
51
+ github-release:
52
+ runs-on: ubuntu-latest
53
+ needs: build
54
+ steps:
55
+ - name: Create GitHub Release
56
+ uses: softprops/action-gh-release@v2
57
+ with:
58
+ generate_release_notes: true
59
+ tag_name: ${{ github.ref_name }}
60
+ env:
61
+ GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
62
+
63
deploy:
64
runs-on: ubuntu-latest
65
needs: build
0 commit comments