Skip to content

Commit

Permalink
Create publish-job
Browse files Browse the repository at this point in the history
  • Loading branch information
shazforiot authored Jul 26, 2023
1 parent 127aa3e commit 05bd692
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/publish-job
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
publish-job:
runs-on: ubuntu-latest
needs: [Java CI with Maven]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- run: mvn --batch-mode --update-snapshots verify
- run: mkdir staging && cp target/*.jar staging
- uses: actions/upload-artifact@v3
with:
name: Package
path: staging

0 comments on commit 05bd692

Please sign in to comment.