Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nelsongraca committed Jan 5, 2024
1 parent f9c91d6 commit 4d39551
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ on:
- "master"

jobs:
build:
setup:
name: Setup
runs-on: ubuntu-latest

steps:
Expand All @@ -19,6 +20,14 @@ jobs:
distribution: 'temurin'
cache: maven

build-and-deploy:
name: Build and Deploy
runs-on: ubuntu-latest
permissions:
contents: read
packages: write

steps:
- name: 'Login to GitHub Container Registry'
uses: docker/login-action@v1
with:
Expand All @@ -29,6 +38,11 @@ jobs:
- name: Build with Maven
run: mvn -B deploy

finalize:
name: Final Stuff
runs-on: ubuntu-latest

steps:
# 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

0 comments on commit 4d39551

Please sign in to comment.