Skip to content

Commit

Permalink
Fix yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ShinjiMC committed Apr 21, 2024
1 parent 0647e76 commit bc27007
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,12 @@ jobs:
- name: Build with Maven
run: mvn clean package

- name: Upload target directory
uses: actions/upload-artifact@v2
with:
name: packaged-jar
path: target/*.jar

docker-build-and-push:
needs: build-and-package
runs-on: ubuntu-latest
Expand All @@ -44,6 +50,12 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Download built JAR
uses: actions/download-artifact@v2
with:
name: packaged-jar
path: target

- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
Expand Down

0 comments on commit bc27007

Please sign in to comment.