Skip to content

fix: 表情没有 id 时转发失败 #551

fix: 表情没有 id 时转发失败

fix: 表情没有 id 时转发失败 #551

Workflow file for this run

name: Build and publish docker container
on:
push:
jobs:
publish:
name: Publish container image
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: OCI meta
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository }}
tags: |
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=sha
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Login to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: ${{ github.actor != 'dependabot[bot]' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64,linux/arm64
cache-from: type=gha
cache-to: type=gha,mode=max
build-args: |
"REPO=${{ github.repository }}"
"REF=${{ github.ref }}"
"COMMIT=${{ github.sha }}"
secrets: |
"npmrc=//npm.pkg.github.com/:_authToken=${{ secrets.GPR_TOKEN }}"