Added docker workflow configuration

This commit is contained in:
2024-02-24 20:18:53 +01:00
parent bb947d7aa7
commit f69fe389e7
3 changed files with 53 additions and 5 deletions

View File

@ -41,4 +41,19 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: jar-artifact
path: build/libs/*.jar
path: build/libs/*.jar
build-docker-image:
needs: build-jar
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download Artifact
uses: actions/download-artifact@v3
with:
name: jar-artifact
path: build/libs
- name: Build Docker Image
run: docker build . -t sharepulse:latest