Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create midnightPurple.css #329

Closed
wants to merge 41 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
9455ca6
Create midnightPurple.css
LucifersCircle Nov 20, 2024
95ab6c5
fix(oauth): update oauth resources and script
sigaloid Nov 20, 2024
6be6f89
feat(oauth): better oauth client matching
sigaloid Nov 21, 2024
100a7b6
fix(client): update headers management, add self check (fix #334, fix…
sigaloid Nov 24, 2024
7fe109d
style(clippy)
sigaloid Nov 24, 2024
a4f511f
fix(client): update rate limit self-check (fix #335)
sigaloid Nov 24, 2024
9f6b08c
fix(main): reduce rate limit check fail to warned error
sigaloid Nov 27, 2024
ef142d5
Add workflows
LucifersCircle Nov 29, 2024
cc1cab7
Tags
LucifersCircle Nov 29, 2024
1ce4a59
Update build-and-push.yml
LucifersCircle Nov 29, 2024
b99ad1e
Update build-and-push.yml
LucifersCircle Nov 29, 2024
5a0d407
Update README.md
LucifersCircle Nov 29, 2024
23c61d0
Create midnightPurple.css
LucifersCircle Nov 20, 2024
92658f4
Add workflows
LucifersCircle Nov 29, 2024
507402a
Tags
LucifersCircle Nov 29, 2024
6f4c24f
Update build-and-push.yml
LucifersCircle Nov 29, 2024
b6515e1
Update build-and-push.yml
LucifersCircle Nov 29, 2024
495f470
Update README.md
LucifersCircle Nov 29, 2024
1b2fcc8
Merge branch 'main' of https://github.com/LucifersCircle/redlib
LucifersCircle Nov 29, 2024
4d74e2f
Update Dockerfile
LucifersCircle Nov 29, 2024
03145dc
Update Dockerfile
LucifersCircle Nov 29, 2024
82917f9
Update Dockerfile
LucifersCircle Nov 29, 2024
e91eb72
Update Dockerfile
LucifersCircle Nov 29, 2024
2b3a81a
Update Dockerfile
LucifersCircle Nov 29, 2024
ca5e5e0
Update Dockerfile
LucifersCircle Nov 29, 2024
90a7b11
Update Dockerfile
LucifersCircle Nov 29, 2024
3961d78
Update Dockerfile
LucifersCircle Nov 29, 2024
14d6c05
Update Dockerfile
LucifersCircle Nov 29, 2024
04d8ace
Update Dockerfile
LucifersCircle Nov 29, 2024
18a1c67
I hate workflows
LucifersCircle Nov 29, 2024
e12ecea
Update Dockerfile
LucifersCircle Nov 29, 2024
0d8bf24
y god
LucifersCircle Nov 29, 2024
50579bd
Update Dockerfile
LucifersCircle Nov 29, 2024
c904a4c
Update Dockerfile
LucifersCircle Nov 29, 2024
f92c2dd
Update Cargo.lock
LucifersCircle Nov 29, 2024
9102f05
Update Dockerfile
LucifersCircle Nov 29, 2024
3cbfdde
Update Dockerfile
LucifersCircle Nov 29, 2024
bd78c39
Update build-and-push.yml
LucifersCircle Nov 29, 2024
11ab200
Update Dockerfile
LucifersCircle Nov 29, 2024
2f7f076
Update Dockerfile
LucifersCircle Nov 29, 2024
b196ec6
Update Dockerfile
LucifersCircle Nov 29, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .github/workflows/build-and-push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Build and Push Docker Image

on:
push:
branches:
- main
workflow_dispatch:

jobs:
build-and-push:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Log in to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: luciferscircle/redlib:latest
76 changes: 0 additions & 76 deletions .github/workflows/build-artifacts.yaml

This file was deleted.

109 changes: 0 additions & 109 deletions .github/workflows/main-docker.yml

This file was deleted.

84 changes: 0 additions & 84 deletions .github/workflows/main-rust.yml

This file was deleted.

67 changes: 0 additions & 67 deletions .github/workflows/pull-request.yml

This file was deleted.

26 changes: 26 additions & 0 deletions .github/workflows/sync-fork.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Sync Fork

on:
schedule:
- cron: '0 0 * * *' # Runs daily at midnight
workflow_dispatch: # Allows manual trigger

jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Checkout fork
uses: actions/checkout@v3
with:
ref: main
token: ${{ secrets.GITHUB_TOKEN }}

- name: Add upstream
run: |
git remote add upstream https://github.com/redlib-org/redlib.git
git fetch upstream
git checkout main
git merge upstream/main --no-ff --no-edit

- name: Push changes
run: git push origin main
Loading