Skip to content

Commit c5610ba

Browse files
renovate[bot]sysnote8main
authored andcommitted
chore(deps): update actions/upload-artifact action to v4.6.0
(cherry picked from commit e3232fb)
1 parent 2db14d1 commit c5610ba

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/build-test.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
name: Build Test
3+
on: [push, workflow_dispatch]
4+
5+
concurrency:
6+
group: ${{ github.workflow }}-${{ github.ref }}
7+
cancel-in-progress: true
8+
9+
jobs:
10+
build-test:
11+
name: Build with Java 8
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
- uses: actions/setup-java@v4
16+
with:
17+
java-version: "8"
18+
distribution: "adopt"
19+
cache: "maven"
20+
- run: java -version
21+
- run: mvn --version
22+
- run: mvn -B package
23+
24+
- name: Upload a Build Artifact
25+
uses: actions/[email protected]
26+
with:
27+
path: /home/runner/work/KDStatusReloaded/KDStatusReloaded/target/

0 commit comments

Comments
 (0)