Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
Signed-off-by: XAP3Y <github@xap3x.dev>
  • Loading branch information
xap3y committed Apr 12, 2024
1 parent 470b867 commit b672092
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ name: Java CI with Maven
on:
push:
branches:
- prod
- dev

jobs:
build:
buildRelese:

runs-on: ubuntu-latest

environment: dev
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
Expand All @@ -30,5 +30,15 @@ jobs:
run: mvn -B package --file pom.xml

# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
- name: Update dependency graph
uses: advanced-security/maven-dependency-submission-action@571e99aab1055c2e71a1e2309b9691de18d6b7d6
#- name: Update dependency graph
# uses: advanced-security/maven-dependency-submission-action@571e99aab1055c2e71a1e2309b9691de18d6b7d6

- name: Automatic Releases
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "pre-${{ github.sha }}"
prerelease: false
title: "Development Build pre-${{ github.sha }}"
files: |
./target/${{ vars.JAR_NAME }}.jar

0 comments on commit b672092

Please sign in to comment.