Compare commits

...

3 Commits

Author SHA1 Message Date
d5c6a468eb Fixed property card image not showing
All checks were successful
thehideout/TheHideout-UI/pipeline/head This commit looks good
2026-01-02 23:14:16 +00:00
bf0d156221 Only run on main branch 2026-01-02 23:11:07 +00:00
a86cb030d5 Added build status to readme 2026-01-02 23:04:02 +00:00
3 changed files with 10 additions and 0 deletions

7
Jenkinsfile vendored
View File

@ -2,6 +2,13 @@ def deploy() {
node('ubuntu') {
try {
checkout scm
// Only deploy from main branch
def branch = env.BRANCH_NAME ?: sh(script: 'git rev-parse --abbrev-ref HEAD', returnStdout: true).trim()
if (branch != 'main') {
echo "Skipping deployment: not on main branch (current branch: ${branch})"
return
}
nodejs(nodeJSInstallationName: 'Node23') {
stage('Install') {

View File

@ -1,6 +1,8 @@
# The Hideout UI
[![Build Status](https://ci.tombutcher.work/buildStatus/icon?job=thehideout%2FTheHideout-UI%2Fmain&style=flat-square&subject=deployment)](https://ci.tombutcher.work/job/thehideout/job/TheHideout-UI/job/main/)
This is the front-end web application for **The Hideout** ([thehideoutltd.com](https://thehideoutltd.com)), built with **React.js** and hosted on **Cloudflare Pages**. The website showcases rental properties with beautiful image galleries, property details, booking integrations, and a contact form for inquiries.
## Tech Stack

View File

@ -975,6 +975,7 @@ hr.th-divider {
border-top-left-radius: 10px;
border-top-right-radius: 10px;
border-bottom: 1px solid var(--th-textColor);
padding-top: 66.6667%;
}
.th-property-card-placeholder-image {