We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36335ca commit 132060aCopy full SHA for 132060a
1 file changed
.github/workflows/main.yml .github/workflows/pre_release.yml.github/workflows/main.yml renamed to .github/workflows/pre_release.yml
@@ -1,17 +1,17 @@
1
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
2
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
3
4
-name: Main
+name: Pre-Release
5
6
on:
7
push:
8
- branches:
9
- - main
+ tags:
+ - "v*.*.*-beta.*"
10
+ - "v*.*.*-rc.*"
11
12
jobs:
13
- deploy-testing:
14
- if: contains(github.event.head_commit.message, 'testing build')
+ deploy-prerelease:
15
runs-on: ubuntu-latest
16
needs: [platform]
17
steps:
@@ -22,3 +22,7 @@ jobs:
22
branch: gh-pages
23
folder: site/updates
24
clean: false
25
+ - name: Pre-Release
26
+ uses: softprops/action-gh-release@v1
27
+ with:
28
+ generate_release_notes: true
0 commit comments