Build and publish frontend to prod #5
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 and publish frontend to prod | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
description: 'Which frontend version should be deployed to production?' | |
required: true | |
default: '0.0.1' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git checkout to specific version | |
uses: actions/checkout@v4 | |
with: | |
ref: refs/tags/frontend-${{ github.event.inputs.version }} | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: "17" | |
distribution: "temurin" | |
cache: "maven" | |
- name: Build with Maven | |
run: mvn -B verify -f mobidam-sst-management-frontend/pom.xml -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=WARN | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Extract Docker metadata | |
uses: docker/metadata-action@v5 | |
with: | |
images: ${{ env.REGISTRY }}/${{ github.repository }}-frontend | |
- name: Build and push image | |
uses: docker/build-push-action@v4 | |
with: | |
context: ./mobidam-sst-management-frontend | |
push: true | |
tags: ghcr.io/it-at-m/mobidam-sst-management-frontend:prod |