1 parent 8ba3fa8 commit 4570ce5Copy full SHA for 4570ce5
2 files changed
.github/workflows/pull_request.yml .github/workflows/build_artifacts.yml.github/workflows/pull_request.yml renamed to .github/workflows/build_artifacts.yml
@@ -1,30 +1,24 @@
1
-name: Build Pull Request Artifacts
2
-on: pull_request
3
-
+name: Build Artifacts
+on: push
4
jobs:
5
build:
6
runs-on: ubuntu-latest
7
8
steps:
9
- name: Checkout Repository
10
uses: actions/checkout@v4
11
with:
12
persist-credentials: false
13
14
- name: Set up Gradle
15
uses: gradle/actions/setup-gradle@v4
16
17
- name: Set up Java
18
uses: actions/setup-java@v4
19
20
distribution: 'temurin'
21
java-version: 21
22
23
- name: Build with Gradle
24
run: ./gradlew build
25
26
- - name: Release
+ - name: Upload Artifact
27
uses: actions/upload-artifact@v4
28
29
name: Artifacts
30
- path: build/libs/
+ path: build/libs/
.github/workflows/dev_build.yml
0 commit comments