Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Squash commits for int release #112

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true
end_of_line = lf

[*.md]
max_line_length = off
Expand Down
23 changes: 23 additions & 0 deletions .github/ISSUE_TEMPLATE/1-issue.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
name: Issue
about: Beschreibe eine neue Aufgabe
title: ''
labels: ''
assignees: ''

---

**Beschreibung**

Eine klare und präzise Beschreibung der Ausgangssituation, der Problematik sowie bereits bekannter Lösungsansätze.



**Abgrenzung**

Nicht beachtet in dieser Aufgabe wird die Suche nach der Frage.

**Acceptance Criteria**

- [ ] Die Antwort muss 42 sein.
- [ ] ...
33 changes: 33 additions & 0 deletions .github/ISSUE_TEMPLATE/2-bug.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
name: Bug
about: Melde einen neuen Bug
title: 'Bug: '
labels: bug
assignees: ''

---

**Beschreibung**
Eine klare und präzise Beschreibung des Problems.

**Schritte zum Reproduzieren**
1. Gehe zur Seite '....'
2. Klicke auf '....'
3. Scrolle zu '....'
4. Ein Fehler erscheint

**Beobachtetes Verhalten**
Eine Beschreibung des Fehlverhaltens.

**Erwartetes Verhalten**
Eine Beschreibung des eigentlich erwarteten Verhaltens

**Screenshots**
Zeige Screenshots, wenn vorhanden und hilfreich.

**Plattform**
Falls relevant:
- Device: [e.g. Desktop, iPhone6]
- OS: [e.g. Windows, iOS8.1]
- Browser [e.g. firefox, edge]
- Mobile Version [e.g. 22]
57 changes: 57 additions & 0 deletions .github/actions/create-image/action.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: 'create docker image'
description: 'Builds a docker image and tags it'
inputs:
IMAGE_NAME:
description: 'The image name'
required: true
TAG:
description: 'The version of the image'
required: true
DOCKERFILE:
description: 'The path to the Dockerfile'
required: true
GITHUB_TOKEN:
description: 'The github token'
required: true

runs:
using: 'composite'
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set environment variables
shell: bash
run: |
echo COMMITED_AT=$(git show -s --format=%cI ${{ github.sha }}) >> $GITHUB_ENV
echo REVISION=$(git rev-parse --short HEAD) >> $GITHUB_ENV

- name: Collect docker image metadata
id: meta-data
uses: docker/metadata-action@v5
with:
images: ${{ inputs.IMAGE_NAME }}
labels: |
org.opencontainers.image.created=${{ env.COMMITED_AT }}
org.opencontainers.image.maintainer=EBP Schweiz AG
flavor: |
latest=false
tags: |
${{ inputs.TAG }}

- name: Log in to the GitHub container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ inputs.GITHUB_TOKEN }}

- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: ./
file: ${{ inputs.DOCKERFILE }}
push: true
tags: ${{ steps.meta-data.outputs.tags }}
labels: ${{ steps.meta-data.outputs.labels }}
no-cache: true
84 changes: 0 additions & 84 deletions .github/actions/deploy/action.yaml

This file was deleted.

15 changes: 0 additions & 15 deletions .github/actions/generate-version/action.yaml

This file was deleted.

26 changes: 0 additions & 26 deletions .github/actions/registry-push/action.yaml

This file was deleted.

Loading
Loading