11 Commits

Author SHA1 Message Date
cc303aa318 Merge pull request 'ok' (#57) from development into master
Some checks failed
ourworld.tf / Deploy (push) Has been cancelled
Reviewed-on: #57
2025-07-04 14:26:34 +00:00
1a56787f29 Merge pull request 'ok' (#56) from development into master
Some checks are pending
ourworld.tf / Deploy (push) Waiting to run
Reviewed-on: #56
2025-07-04 14:11:21 +00:00
d7888815c7 Merge pull request 'edit tf' (#55) from development into master
Some checks are pending
ourworld.tf / Deploy (push) Waiting to run
Reviewed-on: #55
2025-07-04 14:05:40 +00:00
f3b384483b Merge pull request 'ok' (#54) from development into master
Some checks are pending
ourworld.tf / Deploy (push) Waiting to run
Reviewed-on: #54
2025-07-04 13:57:07 +00:00
e0f7b50f38 Merge pull request 'edit' (#53) from development into master
Some checks are pending
ourworld.tf / Deploy (push) Waiting to run
Reviewed-on: #53
2025-07-03 17:26:46 +00:00
bbe0f98957 Merge pull request 'add cpumn' (#52) from development into master
Some checks are pending
ourworld.tf / Deploy (push) Waiting to run
Reviewed-on: #52
2025-07-03 17:23:28 +00:00
75c52042f8 Merge pull request 'edit' (#51) from development into master
Some checks are pending
ourworld.tf / Deploy (push) Waiting to run
Reviewed-on: #51
2025-07-03 17:20:24 +00:00
de4b151714 Merge pull request 'development' (#50) from development into master
Some checks are pending
ourworld.tf / Deploy (push) Waiting to run
Reviewed-on: #50
2025-07-03 17:15:34 +00:00
1a25541544 Merge pull request 'Latest updates: add remove and edit ventures (mostly)' (!48) from development into master
Some checks failed
ourworld.tf / Deploy (push) Has been cancelled
Reviewed-on: #48
2025-06-12 08:39:06 +00:00
80f7ce8c49 Merge pull request 'add press' (!47) from development into master
Some checks failed
ourworld.tf / Deploy (push) Has been cancelled
Reviewed-on: #47
2025-04-11 18:35:27 +00:00
70989c01c2 Merge pull request 'press kit and media kit' (!46) from development into master
Some checks are pending
ourworld.tf / Deploy (push) Waiting to run
Reviewed-on: #46
2025-04-11 17:15:29 +00:00
3 changed files with 49 additions and 1 deletions

24
.github/workflows/tf_update_dev.yml vendored Normal file
View File

@@ -0,0 +1,24 @@
name: www2.ourworld.tf
on:
push:
branches: [ development ]
jobs:
job_one:
name: Deploy
runs-on: ubuntu-latest
steps:
- name: pushing latest change on www2.ourworld.tf
uses: appleboy/ssh-action@master
with:
host: www2.ourworld.tf
username: webuser
key: ${{ secrets.TF_SECRET }}
port: 34022
script: |
cd websites/www2/www_ourworld_tf/
git log -1
git fetch
git reset --hard origin/development
sed -i "s/https:\/\/www.ourworld.tf/https:\/\/www2.ourworld.tf/g" config.toml
./build.sh

24
.github/workflows/tf_update_prod.yml vendored Normal file
View File

@@ -0,0 +1,24 @@
name: ourworld.tf
on:
push:
branches: [ master ]
jobs:
job_one:
name: Deploy
runs-on: ubuntu-latest
steps:
- name: pushing latest change on ourworld.tf
uses: appleboy/ssh-action@master
with:
host: ourworld.tf
username: webuser
key: ${{ secrets.TF_SECRET }}
port: 34022
script: |
cd websites/www_ourworld_tf/
git log -1
git fetch
git reset --hard origin/master
sed -i "s/https:\/\/www2.ourworld.tf/https:\/\/ourworld.tf/g" config.toml
./build.sh

View File

@@ -1,5 +1,5 @@
# The URL the site will be built for
base_url = "https://www2.ourworld.tf"
base_url = "https://www.ourworld.tf"
# Change this to your own URL! Please note this variable **must** be uncommented.
title = "OURWORLD"