Move to Gitea

This commit is contained in:
2026-05-09 22:52:07 +02:00
parent 4665993e71
commit 8694a77e3b
2 changed files with 19 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
# ⚠️ This repository has moved!
Active development and maintenance of this project are **no longer taking place on GitHub**. I have migrated my projects to my own Gitea instance.
This GitHub repository will be archived (read-only) shortly and will only serve as a reference / read only mirror. Unfortunately, new Issues, Pull Requests, or discussions can no longer be processed here.
## 🚀 New Project Location
You can find the latest source code, new releases, and the issue tracker for this specific project right here:
👉 **https://git.ztfr.eu/Dome/matrix.to-dracula-theme**
## 👤 My New Profile
If you want to continue following my work or are interested in my other projects, you can find my entire portfolio on my new Gitea profile:
🔗 **[https://git.ztfr.eu/dome](https://git.ztfr.eu/dome)**
Thank you for your support on GitHub see you on Gitea!
+34
View File
@@ -0,0 +1,34 @@
name: Build and Push Matrix-to Docker Image
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Generate timestamp
id: vars
run: echo "TAG=$(date +%Y%m%d-%H%M)" >> $GITHUB_ENV
- name: Login to Docker Hub
run: |
echo "${{ secrets.DOCKER_PASSWORD }}" | docker login \
-u "${{ secrets.DOCKER_USERNAME }}" \
--password-stdin
- name: Build image
run: |
docker build \
-t domoel/matrix-to:latest \
-t domoel/matrix-to:${TAG} \
.
- name: Push image
run: |
docker push domoel/matrix-to:latest
docker push domoel/matrix-to:${TAG}