Skip to content

Commit

Permalink
Merge branch 'main'
Browse files Browse the repository at this point in the history
  • Loading branch information
alexzhirkevich committed Dec 12, 2023
2 parents 7972d5e + a8496ee commit 30049b3
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/publish.yml → .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
name: Publish
name: Build

on:
workflow_call:
release:
types: [published]
push:
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'

jobs:
build:
Expand All @@ -24,6 +31,8 @@ jobs:
gradle-home-cache-cleanup: true
- name: Make gradlew executable
run: chmod +x ./gradlew
- name: Assemble
run: ./gradlew assemble --stacktrace
- name: Publish
if: startsWith(github.ref, 'refs/tags/')
run: ./gradlew publish
Expand Down

0 comments on commit 30049b3

Please sign in to comment.