Skip to content

Commit

Permalink
ci: update action version; fix keystore path
Browse files Browse the repository at this point in the history
  • Loading branch information
Veirt committed Dec 11, 2024
1 parent d4b1feb commit c5094b0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up JDK 17
uses: actions/setup-java@v2
Expand All @@ -25,7 +25,7 @@ jobs:
java-version: "17"

- name: Cache Gradle packages
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
Expand All @@ -43,7 +43,7 @@ jobs:
- name: Setup keystore.properties
run: |
echo "store.file=keystore.jks" >> keystore.properties
echo "store.file=../keystore.jks" >> keystore.properties
echo "store.password=${{ secrets.KEYSTORE_PASSWORD }}" >> keystore.properties
echo "key.alias=tutortoise" >> keystore.properties
echo "key.password=${{ secrets.KEY_PASSWORD }}" >> keystore.properties
Expand Down

0 comments on commit c5094b0

Please sign in to comment.