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 eb3836d commit 30e55ddCopy full SHA for 30e55dd
.github/workflows/push.yml
@@ -0,0 +1,25 @@
1
+on:
2
+ push:
3
+ branches-ignore:
4
+ - 'gh-pages'
5
+ tags-ignore:
6
+ - '*'
7
+ workflow_dispatch:
8
+env:
9
+ GH_TOKEN_DISPATCH: ${{ secrets.GH_TOKEN_DISPATCH }}
10
+
11
+jobs:
12
+ build:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@v3
16
+ - uses: actions/setup-java@v3
17
+ with:
18
+ distribution: 'temurin' # See 'Supported distributions' for available options
19
+ java-version: '17'
20
+ cache: 'gradle'
21
+ - run: ./gradlew check assemble --continue
22
+ - uses:
23
24
+ files: |
25
+ build/libs/*.jar
Jenkinsfile
manifest.yml
0 commit comments