Skip to content

Commit

Permalink
ci: Fix action bug
Browse files Browse the repository at this point in the history
  • Loading branch information
half-nothing committed Sep 11, 2024
1 parent fe1428a commit fca0ee4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,10 @@ jobs:
gradle-version: 8.8

- name: Build artifacts
run: ./gradlew detekt
run: gradle build

- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: build-artifacts
path: build/libs
10 changes: 2 additions & 8 deletions .github/workflows/check_style.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: build
name: check_style
on: [ push, pull_request ]

jobs:
Expand All @@ -21,10 +21,4 @@ jobs:
gradle-version: 8.8

- name: Build artifacts
run: ./gradlew build

- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: build-artifacts
path: build/libs
run: gradle detekt

0 comments on commit fca0ee4

Please sign in to comment.