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 41b7751 commit 4ee157fCopy full SHA for 4ee157f
.github/workflows/release.yml
@@ -9,6 +9,15 @@ jobs:
9
runs-on: macos-latest
10
11
steps:
12
+ - name: Cache build deps
13
+ uses: actions/cache@v2
14
+ with:
15
+ path: |
16
+ ~/.gradle/wrapper
17
+ ~/.konan/cache
18
+ ~/.konan/dependencies
19
+ key: build-deps-${{ hashFiles('**/*gradle*') }}
20
+
21
- name: Checkout source
22
uses: actions/checkout@v1
23
@@ -23,4 +32,4 @@ jobs:
32
NEW_VERSION=$(echo "${GITHUB_REF}" | cut -d "/" -f3)
24
33
echo "New version: ${NEW_VERSION}"
25
34
echo "Github username: ${GITHUB_ACTOR}"
26
- ./gradlew -Pversion=${NEW_VERSION} publish
35
+ ./gradlew -Pversion=${NEW_VERSION} publish
0 commit comments