We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa0ae3f commit ba77165Copy full SHA for ba77165
1 file changed
.github/workflows/ci.yaml .github/workflows/build.yaml.github/workflows/ci.yaml renamed to .github/workflows/build.yaml
@@ -1,4 +1,4 @@
1
-name: ci
+name: build
2
3
on:
4
push:
@@ -10,8 +10,8 @@ on:
10
jobs:
11
12
13
- build:
14
- name: build-${{ matrix.os }}
+ test:
+ name: test (runner.os)
15
16
runs-on: ${{ matrix.os }}
17
strategy:
@@ -42,7 +42,8 @@ jobs:
42
43
44
publish:
45
- needs: [build]
+ needs: [test]
46
+ name: publish snapshot
47
48
runs-on: ubuntu-latest
49
@@ -60,7 +61,7 @@ jobs:
60
61
restore-keys: |
62
${{ runner.os }}-gradle-
63
- - name: publish snapshot
64
+ - name: publish snapshot to ojo
65
env:
66
BINTRAY_USER: ${{ secrets.BINTRAY_USER }}
67
BINTRAY_KEY: ${{ secrets.BINTRAY_KEY }}
0 commit comments