Skip to content

fix(manga/list): use the embed title and desc instead #9

fix(manga/list): use the embed title and desc instead

fix(manga/list): use the embed title and desc instead #9

Workflow file for this run

name: ci
on:
push:
paths:
- "**/*.rs"
- "Cargo.lock"
- "Cargo.toml"
- ".dockerignore"
- "Dockerfile"
- ".github/workflows/docker-image.yml"
branches:
- "main"
tags:
- "v*"
release:
types: [published]
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/j1nxie/mikisayaka
- name: Build and push
uses: docker/build-push-action@v6
with:
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max