Compare commits
2 Commits
6703064cbd
...
9808c6a543
Author | SHA1 | Date | |
---|---|---|---|
9808c6a543 | |||
2002de7851 |
25
.gitea/workflows/ups.yml
Normal file
25
.gitea/workflows/ups.yml
Normal file
@ -0,0 +1,25 @@
|
||||
name: ups
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: "@weekly"
|
||||
|
||||
jobs:
|
||||
ups:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
sudo apt update -y
|
||||
sudo apt install -y python3 python3-build python3-requests make
|
||||
|
||||
- name: Install ups
|
||||
run: |
|
||||
git clone https://git.ngn.tf/ngn/ups && cd ups
|
||||
make && make install
|
||||
|
||||
- name: Run ups
|
||||
run: PATH=~/.local/bin:$PATH ups-check
|
@ -1,6 +1,8 @@
|
||||
# [ngn.tf] | nitter
|
||||
# nitter - alternative Twitter frontend
|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
A fork of the [nitter](https://github.com/PrivacyDevel/nitter) project, with my personal changes.
|
||||
A fork of the [nitter](https://github.com/PrivacyDevel/nitter) project, with my
|
||||
personal changes.
|
||||
|
@ -1,7 +1,7 @@
|
||||
services:
|
||||
nitter:
|
||||
container_name: nitter
|
||||
image: git.ngn.tf/ngn/nitter
|
||||
image: git.ngn.tf/ngn/nitter/web
|
||||
ports:
|
||||
- 80:8080
|
||||
volumes:
|
||||
|
Loading…
x
Reference in New Issue
Block a user