Move to Gitea
This commit is contained in:
@@ -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/Advanced-Community-Bot**
|
||||
|
||||
## 👤 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!
|
||||
@@ -0,0 +1,29 @@
|
||||
name: Build Maubot Plugin Package
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- "v*"
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up Python 3.10.6
|
||||
uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: "3.10.6"
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade maubot
|
||||
- name: Build Maubot Plugin Package
|
||||
run: |
|
||||
mbc build
|
||||
- name: Release
|
||||
uses: softprops/action-gh-release@v1
|
||||
with:
|
||||
files: |
|
||||
*.mbp
|
||||
LICENSE*
|
||||
Reference in New Issue
Block a user