Skip to content

removed jdk and maven setup for building image #2

removed jdk and maven setup for building image

removed jdk and maven setup for building image #2

Workflow file for this run

name: Build and publish Docker image
on:
push:
branches: ["main", "feature/pipeline"]
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Login to Github container registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: |
ghcr.io/stevensblueprint/orservice:${{ github.sha }}
ghcr.io/stevensblueprint/orservice:latest