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 5cab1ca commit 08f0075Copy full SHA for 08f0075
1 file changed
.github/workflows/ci-cd.yaml
@@ -0,0 +1,31 @@
1
+name: CI/CD for TNoodle CLI
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - "v*.*.*"
7
8
+jobs:
9
+ build:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout
13
+ uses: actions/checkout@v2
14
+ - name: Install Java
15
+ id: jdk
16
+ uses: actions/setup-java@v2
17
+ with:
18
+ java-version: '11'
19
+ distribution: 'adopt'
20
+ - name: Build
21
+ run: |
22
+ chmod +x gradlew
23
+ ./gradlew test
24
+ ./gradlew runtimeZip
25
+ - name: Release
26
+ uses: softprops/action-gh-release@v1
27
28
+ files: build/releases/*
29
+ env:
30
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
31
+ GITHUB_REPOSITORY: jhale1805/tnoodle-cli
0 commit comments