Skip to content
This repository was archived by the owner on Jul 18, 2023. It is now read-only.

Commit

Permalink
fix: remaining actions
Browse files Browse the repository at this point in the history
  • Loading branch information
AlphaMode committed Jan 26, 2023
1 parent 6ca0aca commit 0174dfc
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/pr_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,18 @@ jobs:
java-version: 17
distribution: temurin

- uses: actions/cache@v2
with:
path: |
~/.gradle/caches
~/.gradle/loom-cache
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/gradle-wrapper.properties') }}
restore-keys: ${{ runner.os }}-gradle

- name: make gradle wrapper executable
run: chmod +x ./gradlew

- name: License headers
id: license_headers
uses: gradle/gradle-build-action@v2
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,18 @@ jobs:
java-version: 17
distribution: temurin

- uses: actions/cache@v2
with:
path: |
~/.gradle/caches
~/.gradle/loom-cache
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/gradle-wrapper.properties') }}
restore-keys: ${{ runner.os }}-gradle

- name: make gradle wrapper executable
run: chmod +x ./gradlew

- name: Publish
uses: gradle/gradle-build-action@v2
with:
Expand Down

0 comments on commit 0174dfc

Please sign in to comment.