We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c987ae commit 845e6a5Copy full SHA for 845e6a5
.github/workflows/ci.yml
@@ -3,25 +3,20 @@ name: CI
3
on:
4
push:
5
branches:
6
- - master
+ - main
7
pull_request:
8
9
jobs:
10
build:
11
runs-on: ubuntu-latest
12
steps:
13
- uses: actions/checkout@v2
14
+
15
- uses: actions/setup-java@v3
16
with:
17
java-version: 17
18
distribution: adopt
- - uses: actions/cache@v2
19
- with:
20
- path: |
21
- ~/.gradle/caches
22
- ~/.gradle/wrapper
23
- key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
24
- restore-keys: |
25
- ${{ runner.os }}-gradle-
26
- - name: Build the theme
+ cache: 'gradle'
+ - name: 🧱 Build the theme
27
run: make
0 commit comments