Skip to content

Commit 91f0956

Browse files
tiekoettertiekoetter-bot
authored andcommitted
[update] master branch: 47b5d79 to 66fb829
This branch is 2 commits ahead of upstream iv-org/invidious:master (excluding this commit). Additional commits in this branch: - fd46f60 - 7d51c28 Tested: 2026-08-04 @ 06:17:03 CEST Signed-off-by: Léon Tiekötter <leon@tiekoetter.com> Updated by @tiekoetter-bot. 2026-08-05 @ 00:00:09 CEST ID: c0aa2e72e1ed058e703675afb4f94bd4
2 parents 66fb829 + fd46f60 commit 91f0956

4 files changed

Lines changed: 47 additions & 29 deletions

File tree

.github/FUNDING.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
custom: https://invidious.io/donate/
1+
github: [tiekoettercom]
2+
custom: ["https://www.tiekoetter.com/donate/", "https://invidious.io/donate/"]

.github/workflows/build-nightly-container.yml

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ on:
1818
- "*.nix"
1919
- flake.lock
2020

21+
permissions:
22+
contents: read
23+
packages: write
24+
2125
jobs:
2226
release:
2327
strategy:
@@ -44,25 +48,23 @@ jobs:
4448
- name: Set up Docker Buildx
4549
uses: docker/setup-buildx-action@v4
4650

47-
- name: Login to registry
51+
- name: Login to GHCR
4852
uses: docker/login-action@v4
4953
with:
50-
registry: quay.io
51-
username: ${{ secrets.QUAY_USERNAME }}
52-
password: ${{ secrets.QUAY_PASSWORD }}
54+
registry: ghcr.io
55+
username: ${{ github.actor }}
56+
password: ${{ secrets.GITHUB_TOKEN }}
5357

5458
- name: Docker meta
5559
id: meta
5660
uses: docker/metadata-action@v6
5761
with:
58-
images: quay.io/invidious/invidious
62+
images: ghcr.io/${{ github.repository }}
5963
flavor: |
6064
suffix=${{ matrix.tag_suffix }}
6165
tags: |
6266
type=sha,format=short,prefix={{date 'YYYY.MM.DD'}}-,enable=${{ github.ref == format('refs/heads/{0}', 'master') }}
6367
type=raw,value=master,enable=${{ github.ref == format('refs/heads/{0}', 'master') }}
64-
labels: |
65-
quay.expires-after=12w
6668
6769
- name: Build and push Docker ${{ matrix.name }} image for Push Event
6870
uses: docker/build-push-action@v7
@@ -83,16 +85,15 @@ jobs:
8385
- name: Login to registry
8486
uses: docker/login-action@v4
8587
with:
86-
registry: quay.io
87-
username: ${{ secrets.QUAY_USERNAME }}
88-
password: ${{ secrets.QUAY_PASSWORD }}
88+
registry: ghcr.io
89+
username: ${{ github.actor }}
90+
password: ${{ secrets.GITHUB_TOKEN }}
8991

90-
# https://github.com/marketplace/actions/docker-manifest-create-action
9192
- name: Create and push manifest
9293
uses: int128/docker-manifest-create-action@v2.25.0
9394
with:
9495
push: true
95-
tags: quay.io/invidious/invidious:master
96+
tags: ghcr.io/${{ github.repository_owner }}/invidious:master
9697
sources: |
97-
quay.io/invidious/invidious:master
98-
quay.io/invidious/invidious:master-arm64
98+
ghcr.io/${{ github.repository_owner }}/invidious:master
99+
ghcr.io/${{ github.repository_owner }}/invidious:master-arm64

.github/workflows/build-stable-container.yml

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ on:
66
tags:
77
- "v*"
88

9+
permissions:
10+
contents: read
11+
packages: write
12+
913
jobs:
1014
release:
1115
strategy:
@@ -35,23 +39,21 @@ jobs:
3539
- name: Login to registry
3640
uses: docker/login-action@v4
3741
with:
38-
registry: quay.io
39-
username: ${{ secrets.QUAY_USERNAME }}
40-
password: ${{ secrets.QUAY_PASSWORD }}
42+
registry: ghcr.io
43+
username: ${{ github.actor }}
44+
password: ${{ secrets.GITHUB_TOKEN }}
4145

4246
- name: Docker meta
4347
id: meta
4448
uses: docker/metadata-action@v6
4549
with:
46-
images: quay.io/invidious/invidious
50+
images: ghcr.io/${{ github.repository }}
4751
flavor: |
4852
latest=false
4953
suffix=${{ matrix.tag_suffix }}
5054
tags: |
5155
type=semver,pattern={{version}}
5256
type=raw,value=latest
53-
labels: |
54-
quay.expires-after=12w
5557
5658
- name: Build and push Docker ${{ matrix.name }} image for Push Event
5759
uses: docker/build-push-action@v7
@@ -72,16 +74,15 @@ jobs:
7274
- name: Login to registry
7375
uses: docker/login-action@v4
7476
with:
75-
registry: quay.io
76-
username: ${{ secrets.QUAY_USERNAME }}
77-
password: ${{ secrets.QUAY_PASSWORD }}
77+
registry: ghcr.io
78+
username: ${{ github.actor }}
79+
password: ${{ secrets.GITHUB_TOKEN }}
7880

79-
# https://github.com/marketplace/actions/docker-manifest-create-action
8081
- name: Create and push manifest
8182
uses: int128/docker-manifest-create-action@v2.25.0
8283
with:
8384
push: true
84-
tags: quay.io/invidious/invidious:latest
85+
tags: ghcr.io/${{ github.repository_owner }}/invidious:master
8586
sources: |
86-
quay.io/invidious/invidious:latest
87-
quay.io/invidious/invidious:latest-arm64
87+
ghcr.io/${{ github.repository_owner }}/invidious:master
88+
ghcr.io/${{ github.repository_owner }}/invidious:master-arm64

src/invidious/views/template.ecr

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,9 +146,21 @@
146146
</div>
147147

148148
<div class="pure-u-1 pure-u-md-1-3">
149+
<span>
150+
<i class="icon ion-ios-apps"></i>
151+
<a href="https://www.tiekoetter.com/services">Services</a>
152+
</span>
153+
<span>
154+
<i class="icon ion-ios-menu"></i>
155+
<a href="https://forum.tiekoetter.com">Forum</a>
156+
</span>
157+
<span>
158+
<i class="icon ion-ios-wallet"></i>
159+
<a href="https://www.tiekoetter.com/donate"><%= I18n.translate(locale, "footer_donate_page") %> @ Tiekoetter.com</a>
160+
</span>
149161
<span>
150162
<i class="icon ion-ios-wallet"></i>
151-
<a href="https://invidious.io/donate/"><%= I18n.translate(locale, "footer_donate_page") %></a>
163+
<a href="https://invidious.io/donate/"><%= I18n.translate(locale, "footer_donate_page") %> @ Invidious.io</a>
152164
</span>
153165
<span>
154166
<%= I18n.translate(locale, "Current version: ") %>
@@ -190,6 +202,9 @@
190202
<script src="/js/notifications.js?v=<%= ASSET_COMMIT %>"></script>
191203
<% end %>
192204
<% end %>
205+
<span aria-hidden="true" style="display:none;">
206+
Contact: tinbox@tiekoetter.com
207+
</span>
193208
</body>
194209

195210
</html>

0 commit comments

Comments
 (0)