Skip to content

Commit 79d6214

Browse files
feat: rename to the outdoor programmer
1 parent 48e28bb commit 79d6214

File tree

6 files changed

+23
-23
lines changed

6 files changed

+23
-23
lines changed

.github/workflows/deploy-to-do.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,25 +29,25 @@ jobs:
2929
with:
3030
platforms: linux/arm64
3131
push: true
32-
tags: ghcr.io/apollorion/manifestsio:latest
32+
tags: ghcr.io/theoutdoorprogramer/manifestsio:latest
3333

3434
- name: Build and push SHA-tagged image
3535
uses: docker/build-push-action@v6
3636
with:
3737
platforms: linux/arm64
3838
push: true
39-
tags: ghcr.io/apollorion/manifestsio:${{ github.sha }}
39+
tags: ghcr.io/theoutdoorprogramer/manifestsio:${{ github.sha }}
4040

4141
- name: Checkout flux repository
4242
uses: actions/checkout@v4
4343
with:
44-
repository: apollorion/flux
44+
repository: theoutdoorprogramer/flux
4545
ssh-key: ${{ secrets.FLUX_DEPLOY_KEY }}
4646
path: flux-repo
4747

4848
- name: Update deployment file in flux repo
4949
run: |
50-
sed -i 's|image: .*|image: ghcr.io/apollorion/manifestsio:${{ github.sha }}|' flux-repo/clusters/home/manifestsio/deployment.yaml
50+
sed -i 's|image: .*|image: ghcr.io/theoutdoorprogramer/manifestsio:${{ github.sha }}|' flux-repo/clusters/home/manifestsio/deployment.yaml
5151
5252
- name: Commit and push changes to flux repo
5353
run: |

components/HeartApollorion.tsx

Lines changed: 0 additions & 16 deletions
This file was deleted.
File renamed without changes.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import styles from "./HeartTheOutdoorProgrammer.module.css";
2+
3+
export default function HeartTheOutdoorProgrammer() {
4+
return (
5+
<div className={styles.note}>
6+
<p>
7+
<span><a href="https://github.com/TheOutdoorProgrammer/manifests.io">View in GitHub</a></span><span>K8s Is Awesome</span><span>Made with <span></span></span>
8+
</p>
9+
<p style={{fontSize: "smaller", marginTop: "5px"}}>
10+
11+
Authored by <a href="https://github.com/TheOutdoorProgrammer/">TheOutdoorProgrammer</a>{' '}
12+
Design support by <a href="https://github.com/baadaa/">baadaa</a>
13+
</p>
14+
</div>
15+
)
16+
}

components/Layout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import SearchBar from "./SearchBar";
22
import styles from "./Layout.module.css";
3-
import HeartApollorion from "@/components/HeartApollorion";
3+
import HeartTheOutdoorProgrammer from "@/components/HeartTheOutdoorProgrammer";
44

55
type Props = {
66
children: React.ReactNode;
@@ -27,7 +27,7 @@ export default function Layout({children, item, version, resource, linked}: Prop
2727
</header>
2828
{children}
2929
<footer style={{display: 'flex', justifyContent: 'center'}}>
30-
<HeartApollorion/>
30+
<HeartTheOutdoorProgrammer/>
3131
</footer>
3232
</>
3333
)

components/ReportIssue.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export default function ReportIssue({item, resource}: { item: string, resource?: string }) {
22
return (
33
<a style={{marginTop: "20px", marginBottom: "50px", textDecoration: "underline"}}
4-
href={`https://github.com/Apollorion/manifests.io/issues/new?title=${encodeURIComponent(resource ? `${item} - ${resource}` : item)}&body=%23%23%20Description%20of%20issue%0A`}>See
4+
href={`https://github.com/TheOutdoorProgrammer/manifests.io/issues/new?title=${encodeURIComponent(resource ? `${item} - ${resource}` : item)}&body=%23%23%20Description%20of%20issue%0A`}>See
55
an issue here?</a>
66
)
77
}

0 commit comments

Comments
 (0)