From 838ba48af4ea1781982ec1fe562d3edaad4f8f00 Mon Sep 17 00:00:00 2001 From: Emil Balitzki Date: Mon, 13 May 2024 14:16:11 +0200 Subject: [PATCH] GitHub Actions now run on new tags, not on branch pushes Signed-off-by: Emil Balitzki --- .github/workflows/deploy_production.yml | 4 ++-- .github/workflows/deploy_test.yml | 6 +++--- frontend/src/App.tsx | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/deploy_production.yml b/.github/workflows/deploy_production.yml index 1972cf8b..6fe2ffbc 100644 --- a/.github/workflows/deploy_production.yml +++ b/.github/workflows/deploy_production.yml @@ -2,8 +2,8 @@ name: Deploy - Production Env. on: push: - branches: - - main + tags: + - sprint-**-release jobs: PublishImages: diff --git a/.github/workflows/deploy_test.yml b/.github/workflows/deploy_test.yml index b6238b16..139294e8 100644 --- a/.github/workflows/deploy_test.yml +++ b/.github/workflows/deploy_test.yml @@ -2,12 +2,12 @@ name: Deploy - Test Env. on: push: - branches: - - sprint-release + tags: + - sprint-**-release-candidate jobs: PublishImages: - name: Publish Docker Image + name: Publish Docker Images runs-on: ubuntu-latest steps: diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 2ec7b770..67cbe78b 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -1,7 +1,7 @@ import "./App.css"; function App() { - return

Building Information Enhancer v.3

; + return

Building Information Enhancer v.5

; } export default App;