File tree Expand file tree Collapse file tree 2 files changed +27
-13
lines changed Expand file tree Collapse file tree 2 files changed +27
-13
lines changed Original file line number Diff line number Diff line change @@ -51,19 +51,14 @@ jobs:
51
51
- name : Make Gradlew Executable
52
52
run : chmod +x ./gradlew
53
53
54
- # - name: Lint
55
- # run: ./gradlew lint
54
+ - name : Lint
55
+ run : ./gradlew lint
56
56
57
- # - name: Detekt
58
- # run: ./gradlew detekt
57
+ - name : Detekt
58
+ run : ./gradlew detekt
59
59
60
- # - name: Spotless
61
- # run: ./gradlew spotlessCheck
60
+ - name : Spotless
61
+ run : ./gradlew spotlessCheck
62
62
63
- # - name: Build
64
- # run: ./gradlew compileDebugKotlin
65
-
66
- # check and text:
67
- - name : Create Release
68
- uses : softprops/action-gh-release@v1
69
- if : startsWith(github.ref, 'refs/tags/')
63
+ - name : Build
64
+ run : ./gradlew compileDebugKotlin
Original file line number Diff line number Diff line change
1
+ name : Release
2
+
3
+ on :
4
+ push :
5
+ tags :
6
+ - ' *'
7
+
8
+ jobs :
9
+ build :
10
+ runs-on : ubuntu-latest
11
+
12
+ permissions :
13
+ contents : write
14
+
15
+ steps :
16
+ - uses : actions/checkout@v2
17
+ - uses : ncipollo/release-action@v1
18
+ with :
19
+ artifacts : " release.tar.gz,foo/*.txt"
You can’t perform that action at this time.
0 commit comments