Skip to content

Commit

Permalink
GitHub Actions on Tags (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
Corgam authored May 13, 2024
2 parents db68ec6 + 94da656 commit 8467cea
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy_production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: Deploy - Production Env.

on:
push:
branches:
- main
tags:
- sprint-**-release

jobs:
PublishImages:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import "./App.css";

function App() {
return <h1> Building Information Enhancer v.3</h1>;
return <h1> Building Information Enhancer v.5</h1>;
}

export default App;

0 comments on commit 8467cea

Please sign in to comment.