Skip to content

Commit

Permalink
Merge pull request #87 from green-ecolution/release/v1.0.4
Browse files Browse the repository at this point in the history
Release version v1.0.4
  • Loading branch information
choffmann authored Jan 12, 2025
2 parents 110cbea + 364c927 commit ef23426
Show file tree
Hide file tree
Showing 7 changed files with 42 additions and 15 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/notify-on-new-issue.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: "Notify on new issue"
on:
issues:
types: [opened]

jobs:
notify:
runs-on: ubuntu-latest
steps:
- name: Notify on Discord
uses: tsickert/[email protected]
with:
webhook-url: ${{ secrets.DISCORD_ISSUE_WEBHOOK }}
content: |
Es wurde ein neues Issue #${{ github.event.issue.number }} erstellt.
**${{ github.event.issue.title }}**

${{ github.event.issue.html_url }}
username: "GitHub Actions"
avatar-url: "https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png"
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [v1.0.4] - 2025-01-12

### Changed

- update current process step to release 2 (#86)

## [v1.0.3] - 2024-09-17

### Added
Expand Down Expand Up @@ -63,7 +69,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Initial release
- Create "Page under construction" Page

[Unreleased]: https://github.com/green-ecolution/project-website/compare/v1.0.3...HEAD
[Unreleased]: https://github.com/green-ecolution/project-website/compare/v1.0.4...HEAD

[v1.0.4]: https://github.com/green-ecolution/project-website/compare/v1.0.3...v1.0.4

[v1.0.3]: https://github.com/green-ecolution/project-website/compare/v1.0.2...v1.0.3

Expand Down
2 changes: 1 addition & 1 deletion k8s/values/develop.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ deployment:
image:
repository: ghcr.io/green-ecolution/project-website-dev
pullPolicy: Always
tag: "8c2ce56"
tag: "0e63112"
ingress:
enabled: true
className: "traefik"
Expand Down
17 changes: 8 additions & 9 deletions k8s/values/prod.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
deployment:
namespace: project-website
name: project-website
replicaCount: 1
image:
repository: ghcr.io/green-ecolution/project-website
pullPolicy: Always
tag: v1.0.3

namespace: project-website
name: project-website
replicaCount: 1
image:
repository: ghcr.io/green-ecolution/project-website
pullPolicy: Always
tag: v1.0.4
ingress:
enabled: true
enabled: true
2 changes: 1 addition & 1 deletion k8s/values/stage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ deployment:
image:
repository: ghcr.io/green-ecolution/project-website-stage
pullPolicy: Always
tag: 4cd7a81
tag: v1.0.4-preview
ingress:
enabled: true
className: "traefik"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "project-website",
"private": true,
"version": "v1.0.3",
"version": "v1.0.4",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
4 changes: 2 additions & 2 deletions src/data/processSteps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ export const steps = [
{
label: "Projektvorstellung 01",
shortName: "Vorstellung 01",
isCurrent: true,
isCurrent: false,
description: "Aufbauend auf den Erkenntnissen des MVP soll eine Fort- und Weiterentwicklung stattfinden. Die Projektvorstellung 01 stellt den ersten, offiziellen Release dar."
},
{
label: "Projektvorstellung 02",
shortName: "Vorstellung 02",
isCurrent: false,
isCurrent: true,
description: "Nach dem ersten Release wird eine Qualitätssicherung stattfinden, um den einwandfreien Gebrauch zu gewährleisten und Fehler zu beheben sowie neue Features einzubauen."
},
{
Expand Down

0 comments on commit ef23426

Please sign in to comment.