Skip to content

Commit

Permalink
Add cache to build pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
phihos committed Feb 13, 2024
1 parent bae80ea commit 4fe0f9c
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ jobs:
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Cache Gradle packages
uses: actions/cache@v3
env:
cache-name: cache-build-deps
with:
key: ${{ runner.os }}-build-${{ env.cache-name }}
path: .cache
- name: Run build script
run: |
./build.sh
Expand Down

0 comments on commit 4fe0f9c

Please sign in to comment.