Skip to content

Commit

Permalink
add a task for running ./gradlew clean
Browse files Browse the repository at this point in the history
  • Loading branch information
screret committed Sep 26, 2024
1 parent 9b809f0 commit a990db2
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/clean.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Clean Gradle

on:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
submodules: true

- name: Setup Build
uses: ./.github/actions/build_setup
with:
update-cache: true

- name: Clean
run: ./gradlew clean --build-cache

0 comments on commit a990db2

Please sign in to comment.