Added docker workflow configuration
This commit is contained in:
@ -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
|
Reference in New Issue
Block a user