Skip to content

Commit 6fe5c7b

Browse files
title mux
1 parent 85e77d1 commit 6fe5c7b

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

.github/workflows/static.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,16 @@ concurrency:
2121
group: "pages"
2222
cancel-in-progress: false
2323

24-
jobs:
24+
jobs:
25+
# Step for the first repository
26+
- name: Set Title for L2F Playground
27+
if: github.repository == 'rl-tools/l2f-studio'
28+
run: sed -i 's/__PAGE_TITLE__/L2F Playground/g' index.html
29+
30+
# Step for the second repository
31+
- name: Set Title for RAPTOR
32+
if: github.repository == 'rl-tools/raptor.rl.tools'
33+
run: sed -i 's/__PAGE_TITLE__/RAPTOR: A Foundation Policy for Quadrotor Control/g' index.html
2534
# Single deploy job since we're just deploying
2635
deploy:
2736
environment:

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<head>
33
<meta charset="utf-8">
44
<meta name="viewport" content="width=device-width, initial-scale=1.0">
5-
<title>L2F Playground</title>
5+
<title>__PAGE_TITLE__</title>
66
<template id="perturbation-group-template" >
77
<div class="perturbation-group">
88
<div class="perturbation-group-targets"></div>

0 commit comments

Comments
 (0)