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

Release version v1.0.4 #87

Merged
merged 8 commits into from
Jan 12, 2025
Merged
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
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
Loading