Remove custom NextAuth type definitions for Session and User

This commit is contained in:
2026-03-30 11:44:30 +07:00
parent 24f070d14e
commit cd7b8179dd
63 changed files with 0 additions and 11677 deletions
-43
View File
@@ -1,43 +0,0 @@
name: Build and Push Docker Image
on:
push:
jobs:
docker:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push image
uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile
push: true
tags: |
fevirtus/reader:latest
ghcr.io/fevirtus/reader:latest
cache-from: type=gha
cache-to: type=gha,mode=max