Feature 39 setup build and publish image #104
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Backend | |
on: | |
push: | |
branches: | |
- '**' | |
tags-ignore: | |
- 'v*' | |
pull_request: | |
branches: | |
- '**' | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: ${{ github.repository }} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@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 Backend | |
run: cd power-pay-backend && mvn package | |
- id: string | |
uses: ASzc/change-string-case-action@v6 | |
with: | |
string: ${{github.repository}}-backend | |
- name: Build and push image | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./power-pay-backend | |
file: ./power-pay-backend/Dockerfile | |
push: true | |
tags: ghcr.io/${{ steps.string.outputs.lowercase }}:latest | |