Archived
Private
Public Access
1
0

added build action

This commit is contained in:
2023-05-17 18:45:09 +02:00
parent 0f6c5490e4
commit 02dc9c989e
2 changed files with 60 additions and 1 deletions

View File

@@ -0,0 +1,59 @@
name: build
env:
DOCKER_IMAGE: git.leon-hoppe.de/leon.hoppe/betteriserv
on:
push:
tags:
- '*'
jobs:
frontend:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Login to Repo
uses: docker/login-action@v2
with:
registry: git.leon-hoppe.de
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and Push
uses: docker/build-push-action@v4
env:
ACTIONS_RUNTIME_TOKEN: '' # See https://gitea.com/gitea/act_runner/issues/119
with:
context: BetterIServ.Mobile
file: ./Dockerfile
platforms: linux/amd64
push: true
tags: &{{ env.DOCKER_IMAGE }}-frontend:latest
backend:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Login to Repo
uses: docker/login-action@v2
with:
registry: git.leon-hoppe.de
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and Push
uses: docker/build-push-action@v4
env:
ACTIONS_RUNTIME_TOKEN: '' # See https://gitea.com/gitea/act_runner/issues/119
with:
context: BetterIServ.Backend
file: ./Dockerfile
platforms: linux/amd64
push: true
tags: &{ { env.DOCKER_IMAGE } }-backend:latest

View File

@@ -51,7 +51,7 @@
<ion-content [fullscreen]="true"> <ion-content [fullscreen]="true">
<ion-header collapse="condense"> <ion-header collapse="condense">
<ion-toolbar> <ion-toolbar>
<ion-title size="large">Vertretungsplan</ion-title> <ion-title size="large" (click)="fakeModal.present()">Vertretungsplan</ion-title>
</ion-toolbar> </ion-toolbar>
</ion-header> </ion-header>